You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
128 lines
5.1 KiB
128 lines
5.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.Mvc.Html;
|
|
using QMFrameWork.WebUI.Attribute;
|
|
using QMFrameWork.WebUI;
|
|
|
|
namespace QMAPP.FJC.Web.Models.CheckTime
|
|
{
|
|
/// </summary>
|
|
/// 模块名称 时间验证
|
|
/// 作 者 张松男
|
|
/// 编写日期 2021年05月24日
|
|
/// </summary>
|
|
public class CHECKTIMEModel : QDGModel
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[Description("主键")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 36)]
|
|
[DGColumn(Hidden = true, PrimaryKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 当前工位编号
|
|
/// </summary>
|
|
[Description("当前工位编号")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string WorkLoc_Code { get; set; }
|
|
/// <summary>
|
|
/// 开始位数
|
|
/// </summary>
|
|
[Description("开始位数")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string CodeTimeStart { get; set; }
|
|
|
|
/// <summary>
|
|
/// 时间位数
|
|
/// </summary>
|
|
[Description("时间位数")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string CodeTimeNumber { get; set; }
|
|
/// <summary>
|
|
/// 状态
|
|
/// </summary>
|
|
[Description("状态")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200, JsonUtl = "/Dict/GetFixedComboxSource?kind=CheckTimeState")]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string State { get; set; }
|
|
|
|
/// <summary>
|
|
/// 验证值
|
|
/// </summary>
|
|
[Description("验证值")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string Check_Value { get; set; }
|
|
/// <summary>
|
|
/// 验证运算符
|
|
/// </summary>
|
|
[Description("验证运算符")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string Operator { get; set; }
|
|
/// <summary>
|
|
/// 验证类型
|
|
/// </summary>
|
|
[Description("验证类型")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200, JsonUtl = "/Dict/GetFixedComboxSource?kind=CheckTimeType")]
|
|
[InputType(inputType.combobox)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string Check_Type { get; set; }
|
|
/// <summary>
|
|
/// 备注
|
|
/// </summary>
|
|
[Description("备注")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string Remark { get; set; }
|
|
/// <summary>
|
|
/// 验证值2
|
|
/// </summary>
|
|
[Description("验证值2")]
|
|
[HTMLInput(UpdateRead = false, required = false, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string Check_ValueTo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 采集点
|
|
/// </summary>
|
|
[Description("采集点")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)]
|
|
public string DAI_Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 备用字段1
|
|
/// </summary>
|
|
[Description("备用字段1")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center, Hidden = true)]
|
|
public string Column1 { get; set; }
|
|
/// <summary>
|
|
/// 备用字段2
|
|
/// </summary>
|
|
[Description("备用字段2")]
|
|
[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)]
|
|
[InputType(inputType.text)]
|
|
[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center,Hidden = true)]
|
|
public string Column2 { get; set; }
|
|
|
|
}
|
|
}
|
|
|