using System; using System.Collections.Generic; using System.Linq; using System.Web; using QMFrameWork.WebUI.Attribute; using QMFrameWork.WebUI; using System.Web.Mvc.Html; using QMFrameWork.WebUI.Attribute; using QMFrameWork.WebUI; namespace QMAPP.MESReport.Web.Models.LineQTY { /// /// 生产情况统计条件 视图MODEL /// 创建人:李炳海 /// 创建时间:2017.09.22 /// public class LineQtyConditionModel : QDGModel { /// /// 工作中心 /// [Description("工作中心")] [HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetAllWorkCenterComboxSource", MaxLength = 20, Width = 150)] [InputType(inputType.combobox)] public string WORKCENTER_CODE { get; set; } /// /// 工序编码 /// [Description("工序")] [HTMLInput(UpdateRead = false,MaxLength = 20)] [InputType(inputType.text)] public string WORKCELL_CODE { get; set; } /// /// 设备编码 /// [Description("设备")] [HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetMachine", MaxLength = 20, Width = 150)] [InputType(inputType.combobox)] public string EQUIPMENT_CODE { get; set; } /// /// 班次编码 /// [Description("班次")] [HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetShiftList", MaxLength = 20, Width = 150)] [InputType(inputType.combobox)] public string SHIFT_CODE { get; set; } /// /// 起始日期 /// [Description("起始日期")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 150)] [InputType(inputType.datebox)] public string START_DATE { get; set; } /// /// 结束日期 /// [Description("结束日期")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 150)] [InputType(inputType.datebox)] public string END_DATE { get; set; } /// /// 统计开始日期 /// [Description("统计开始日期")] [HTMLInput(UpdateRead = false,MaxLength = 10)] [InputType(inputType.datebox)] public string START_STATIS_DATE { get; set; } /// /// 统计开始截止日期 /// [Description("统计开始截止日期")] [HTMLInput(UpdateRead = false, MaxLength = 10)] [InputType(inputType.datebox)] public string END_STATIS_DATE { get; set; } } }