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 { /// /// 模块名称:BZD条码记录 /// 作 者:宁红钢 /// 编写日期:2020年04月29日 /// public class BZDRecorderModel : QDGModel { /// /// 条码格式规则主键 /// [Description("主键")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 36)] [DGColumn(Hidden = true, PrimaryKey = true)] public string PID { get; set; } /// /// 正则表达式 /// [Description("物料PID")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Hidden = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string MPID { get; set; } /// /// 描述 /// [Description("公司编码")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 100)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Hidden = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Company_code { get; set; } /// /// 描述 /// [Description("公司名称")] [HTMLInput(UpdateRead = false, required = false, MaxLength = 300)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 300, DataAlign = DataAlign.center)] public string Company_name { get; set; } /// /// 描述 /// [Description("产线代码")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 100)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Hidden = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Line_code { get; set; } /// /// 描述 /// [Description("产线名称")] [HTMLInput(UpdateRead = false, required = false, MaxLength = 100)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Line_name { get; set; } /// /// 物料类型 /// [Description("BZD条码")] //[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 BZDCODE { 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 PRODUCTCODE { get; set; } /// /// 数据类型 /// [Description("流水号")] [HTMLInput(UpdateRead = false, required = false, MaxLength = 50)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string Sequence { 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; } } }