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.FIS { public class FISOrederSendDetialModel:QDGModel { /// ///主键 /// [Description("主键")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 36)] [InputType(inputType.text)] [DGColumn(Hidden = true, PrimaryKey = true)] public string PID { get; set; } /// /// /// [Description("")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 36)] [InputType(inputType.text)] [DGColumn(Hidden = true, frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)] public string FIS_PID { get; set; } /// ///发货号 /// [Description("发货号")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 40)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)] public string SHIPMENT_NO { get; set; } /// ///状态 /// [Description("状态")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 6, JsonUtl = "/Dict/GetFixedComboxSource?kind=STATE")] [InputType(inputType.combobox)] [DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)] public string STATE { get; set; } /// ///物料号 /// [Description("物料号")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20, JsonUtl = "/Dict/GetMaterialComboxSource")] [InputType(inputType.combobox)] [DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)] public string MATERIAL_CODE { get; set; } /// ///物料名称 /// [Description("物料名称")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 60)] [InputType(inputType.text)] [DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)] public string MATERIAL_NAME { get; set; } /// ///工厂编号 /// [Description("工厂编号")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 10, JsonUtl = "/Dict/GetFactoryComboxSource")] [InputType(inputType.combobox)] [DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)] public string FACTORY_CODE { get; set; } /// ///工厂名称 /// [Description("工厂名称")] [DGColumn(frozenColumns = false, Sortable = true, Width = 80, DataAlign = DataAlign.center)] public string FACTORY_NAME { get; set; } /// ///工作中心编码 /// [Description("工作中心编号")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 30, JsonUtl = "/Dict/GetAllWorkCenterComboxSource")] [InputType(inputType.combobox)] [DGColumn(frozenColumns = false, Sortable = true, Width = 90, DataAlign = DataAlign.center)] public string WORKCENTER_CODE { get; set; } /// ///工作中心名称 /// [Description("工作中心名称")] [DGColumn(frozenColumns = false, Sortable = true, Width = 90, DataAlign = DataAlign.center)] public string WORKCENTER_NAME { get; set; } } }