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.Dianjian { /// /// 模块名称:库存信息信息 /// 作 者:张松男 /// 编写日期:2021年07月13日 /// public class InOutPut_InventoryModel : QDGModel { /// /// 主键 /// [Description("主键")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 36)] [DGColumn(Hidden = true, PrimaryKey = true)] public string PID { 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 PlanID { 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 ProductCode { get; set; } /// /// 类型 /// [Description("类型")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.center,Hidden = true)] public string Type { get; set; } /// /// 状态 /// [Description("状态")] //[HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetInventoryTypeComboxSource", MaxLength = 15, Width = 100)] [InputType(inputType.combobox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string State { get; set; } /// /// 入库用户 /// [Description("入库用户")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 200, DataAlign = DataAlign.center)] public string CreateUser { get; set; } /// /// 入库时间 /// [Description("入库时间")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.dateTimeBox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string CreateDate { get; set; } /// /// 入库开始时间 /// [Description("入库时间")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.dateTimeBox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string CreateState { get; set; } /// /// 入库结束时间 /// [Description("入库时间")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.dateTimeBox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string CreateEnd { 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 UpdateUser { get; set; } /// /// 更新时间 /// [Description("更新时间")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.dateTimeBox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string UpdateDate { get; set; } /// /// 更新开始时间 /// [Description("入库时间")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.dateTimeBox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string UpdateState { get; set; } /// /// 更新结束时间 /// [Description("入库时间")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 200)] [InputType(inputType.dateTimeBox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string UpdateEnd { get; set; } } }