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.SendManage { public class PastCardModel : QDGModel { /// ///主键 /// [Description("主键")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 36)] [InputType(inputType.text)] [DGColumn(Hidden = true)] public string PID { get; set; } /// ///贴车单号 /// [Description("贴车单号")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 100)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 150, DataAlign = DataAlign.center, PrimaryKey = true)] public string PASTECARDNO { get; set; } /// ///操作人 /// [Description("操作人")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 36)] [InputType(inputType.combobox)] [DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string OPERATOR { get; set; } /// /// 操作时间 /// [Description("操作时间")] [HTMLInput(UpdateRead = false, MaxLength = 20)] [InputType(inputType.datebox)] [DGColumn(Sortable = true, Width = 150, DataAlign = DataAlign.center, FormatDate = "yyyy-MM-dd hh:mm:ss")] public string PASTECARDDATE { get; set; } /// /// /// [Description("")] [HTMLInput(UpdateRead = false, required = true,MaxLength = 1)] [InputType(inputType.combobox)] public string PRODUCTIONNAME { get; set; } /// /// 创建时间 /// [Description("创建时间")] public DateTime CREATETIME { get; set; } /// /// /// [Description("")] [HTMLInput(UpdateRead = false, required = true,MaxLength = 1)] [InputType(inputType.combobox)] public string FLAGDEL { get; set; } /// /// /// [Description("")] [HTMLInput(UpdateRead = false, required = true,MaxLength = 1)] [InputType(inputType.combobox)] public string VINLACK { get; set; } /// /// /// [Description("")] [HTMLInput(UpdateRead = false, required = true,MaxLength = 1)] [InputType(inputType.combobox)] public string PLANTNAME { get; set; } /// /// 操作时间 /// [Description("操作时间")] [HTMLInput(UpdateRead = false, MaxLength = 20)] [InputType(inputType.datebox)] public string STARTCREATEDATE { get; set; } [Description("至")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 7, Width = 151, FormatDate = "yyyy-MM-dd")] [InputType(inputType.datebox)] public string ENDCREATEDATE { get; set; } /// ///工作中心名称 /// [Description("工作中心名称")] //[HTMLInput(UpdateRead = false, required = true, MaxLength = 30, Width = 160)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string WORKCENTER_NAME { get; set; } /// ///工作中心编码 /// [Description("工作中心编码")] [HTMLInput(UpdateRead = true, required = true, MaxLength = 20, Width = 160)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string WORKCENTER_CODE { get; set; } } }