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 { /// /// 模块名称:工位时间验证 /// 作 者:张松男 /// 编写日期:2020年05月27日 /// public class ProductTimeModel : QDGModel { /// /// 条码格式规则主键 /// [Description("主键")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 36)] [DGColumn(Hidden = true, PrimaryKey = true)] public string PID { get; set; } /// /// 当前工位编号 /// [Description("当前工位编号")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200, JsonUtl = "/Dict/GetWorkLocComboxSource")] // [InputType(inputType.combobox)] //[InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string CWorkLoc_Code { get; set; } /// /// 校验工位编号 /// [Description("校验工位编号")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200, JsonUtl = "/Dict/GetWorkLocComboxSource")] [InputType(inputType.combobox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string PWorkLoc_Code { get; set; } /// /// 校验工位列名 /// [Description("校验工位列名")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string PWorkLoc_Column { get; set; } /// /// 产品码列名 /// [Description("产品码列名")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Product_Column { get; set; } /// /// 是否验证 /// [Description("是否验证")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Check { get; set; } /// /// 验证运算符 /// [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; } /// /// 验证类型 /// [Description("验证类型")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Check_Type { get; set; } /// /// 验证值 /// [Description("验证值(h)")] [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; } /// /// 校验表 /// [Description("校验表")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Check_Table { get; set; } /// /// 校验字段 /// [Description("校验字段")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Check_Column { get; set; } /// /// 校验where条件 /// [Description("校验where条件")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Pwhere { get; set; } /// /// 描述 /// [Description("描述")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200)] [InputType(inputType.textArea)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Remark { get; set; } /// /// 创建人 /// [Description("创建用户")] public string CREATEUSER { get; set; } /// /// 创建日期 /// [Description("创建时间")] [HTMLInput(UpdateRead = true, MaxLength = 20)] [InputType(inputType.hidden)] [DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")] public DateTime CREATEDATE { get; set; } /// /// 更新人 /// [Description("更新用户")] public string UPDATEUSER { get; set; } /// /// 更新日期 /// [Description("更新时间")] [HTMLInput(UpdateRead = true, MaxLength = 20)] [InputType(inputType.hidden)] [DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")] public DateTime UPDATEDATE { get; set; } /// /// 采集点 /// [Description("采集点")] [HTMLInput(UpdateRead = true, required = false, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string DAI_Code { get; set; } /// /// 验证值2 /// [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; } ///// ///// 正则表达式 ///// //[Description("物料PID")] //[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] //[InputType(inputType.text)] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string MPID { get; set; } ///// ///// 物料类型 ///// //[Description("总成物料号")] ////[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetMaterialClassComboxSource", MaxLength = 20)] //[HTMLInput(UpdateRead = false, required = true, MaxLength = 300)] //[InputType(inputType.text)] //[DGColumn(frozenColumns = false, Sortable = true, Width = 200, DataAlign = DataAlign.center)] //public string MATERIALCODDE { get; set; } ///// ///// 数据类型 ///// //[Description("二维码头052")] //[HTMLInput(UpdateRead = false, required = true, MaxLength = 50)] //[InputType(inputType.text)] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string barcodeFist { get; set; } = "052"; ///// ///// 描述 ///// //[Description("公司编码(3位)")] //[HTMLInput(UpdateRead = false, required = true, MaxLength = 100)] //[InputType(inputType.textArea)] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string Company_code { get; set; } ///// ///// 描述 ///// //[Description("公司名称")] //[HTMLInput(UpdateRead = false, required = false, MaxLength = 100)] //[InputType(inputType.textArea)] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string Company_name { get; set; } ///// ///// 描述 ///// //[Description("产线代码")] //[HTMLInput(UpdateRead = false, required = false, MaxLength = 100)] //[InputType(inputType.textArea)] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string Line_code { get; set; } ///// ///// 描述 ///// //[Description("产线名称")] //[HTMLInput(UpdateRead = false, required = false, MaxLength = 100)] //[InputType(inputType.textArea)] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string Line_name { get; set; } ///// ///// 工厂编码 ///// //[Description("车型(1位)")] ////[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 100)] //[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] //[InputType(inputType.text)] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string Vehicle_type { get; set; } ///// ///// 工厂编码 ///// //[Description("车型说明")] ////[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 100)] //[HTMLInput(UpdateRead = false, required = false, MaxLength = 200)] //[InputType(inputType.text)] //[DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string VTDetail { get; set; } ///// ///// 物料号 ///// //[Description("配置、颜色(1位)")] ////[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetMaterialComboxSource", MaxLength = 200)] //[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] //[InputType(inputType.text)] //[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string configColor { get; set; } ///// ///// 物料号 ///// //[Description("配置说明")] ////[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetMaterialComboxSource", MaxLength = 200)] //[HTMLInput(UpdateRead = false, required = false, MaxLength = 200)] //[InputType(inputType.text)] //[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string configDetail { get; set; } ///// ///// 物料号 ///// //[Description("颜色说明")] ////[HTMLInput(UpdateRead = false, required = false, JsonUtl = "/Dict/GetMaterialComboxSource", MaxLength = 200)] //[HTMLInput(UpdateRead = false, required = false, MaxLength = 200)] //[InputType(inputType.text)] //[DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)] //public string ColorDetail { get; set; } } }