using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc; using System.Web.Mvc.Html; using QMFrameWork.WebUI.Attribute; using QMFrameWork.WebUI; namespace QMAPP.FJC.Web.Models.TianJin { /// /// 注塑投入产出统计 /// 张松男 /// 2024-7-6 /// public class InjectionCountModel : QDGModel { /// ///批次号 /// [Description("批次号")] [HTMLInput(UpdateRead = true, required = true, MaxLength = 20, Width = 150)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string RawMaterialPID { get; set; } /// ///零件号 /// [Description("零件号")] [HTMLInput(UpdateRead = true, required = true, MaxLength = 20, Width = 150)] [InputType(inputType.text)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string MaterialCode { get; set; } /// /// 起始日期 /// [Description("起始日期")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 120)] [InputType(inputType.dateTimeBox)] public string START_DATE { get; set; } /// /// 结束日期 /// [Description("结束日期")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 120)] [InputType(inputType.dateTimeBox)] public string END_DATE { get; set; } /// ///产品条码 /// [Description("产品条码")] [HTMLInput(UpdateRead = true, required = true, MaxLength = 20, Width = 150)] [InputType(inputType.combobox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string ProductCode { get; set; } /// ///统计类型 /// [Description("统计类型")] [HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetTJList", MaxLength = 20, Width = 110)] [InputType(inputType.combobox)] public string TYPE_COUNT { get; set; } public string MaterialValue { get; set; } } }