using System.Web.Mvc.Html; using QMFrameWork.WebUI; using QMFrameWork.WebUI.Attribute; namespace QMAPP.FJC.Web.Models.ProductPetrospect { /// /// 生产完成率分析 视图MODEL /// 于子清 /// 2017-10-20 /// public class QTYCompletionRateVModel : QDGModel { /// /// 起始日期 /// [Description("起始日期")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 120)] [InputType(inputType.datebox)] public string START_DATE { get; set; } /// /// 结束日期 /// [Description("结束日期")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 120)] [InputType(inputType.datebox)] public string END_DATE { get; set; } /// ///商品类型 /// [Description("商品类型")] [HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetWList", MaxLength = 20, Width = 150)] [InputType(inputType.combobox)] [DGColumn(frozenColumns = true, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string MATERIAL_CODE { get; set; } /// /// 物料名称 /// [Description("物料名称")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 20, Width = 120)] [InputType(inputType.combobox)] public string MATERIAL_NAME { get; set; } /// /// 统计类型 /// [Description("统计类型")] [HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetTJList", MaxLength = 20, Width = 110)] [InputType(inputType.combobox)] public string TYPE_COUNT { get; set; } } }