using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc.Html; using QMFrameWork.WebUI.Attribute; using QMFrameWork.WebUI; using QMAPP.FJC.Entity.SendPlan; namespace QMAPP.FJC.Web.Models.StatisticalAnalysis { /// /// 模块编号:M10-3 /// 作 用:班次对比分析页面模型 /// 作 者:王庆男 /// 编写日期:2015年06月26日 /// public class ShiftContrastModel : QDGModel { /// ///班次名称 /// [Description("班次名称")] public string PRODUCESHIFTNAME { get; set; } /// ///设备名称 /// [Description("设备名称")] public string MACHINENAME { get; set; } /// ///班次编号 /// [Description("班次编号")] [HTMLInput(UpdateRead = false, required = true, JsonUtl = "/InJectionRecorder/GetProductShiftComboxSource", MaxLength = 1)] [InputType(inputType.combobox)] public string PRODUCESHIFTTCODE { get; set; } /// ///设备编号 /// [Description("设备编号")] [HTMLInput(UpdateRead = false, required = true, JsonUtl = "/InJectionRecorder/GetMachineInfoComboxSource", MaxLength = 1)] [InputType(inputType.combobox)] public string MACHINECODDE { get; set; } /// /// 日期 /// [Description("日期")] [HTMLInput(UpdateRead = true, MaxLength = 20)] [InputType(inputType.datebox)] public string CreateDateStart { get; set; } /// /// 至 /// [Description("至")] [HTMLInput(UpdateRead = true, MaxLength = 20)] [InputType(inputType.datebox)] public string CreateDateEnd { get; set; } /// /// 分组数量和 /// [Description("分组数量和")] public string Counts { get; set; } public string results; public string arr; } }