using System; using System.Collections.Generic; using System.Linq; using System.Web; using QMFrameWork.WebUI.Attribute; using QMFrameWork.WebUI; using System.Web.Mvc.Html; namespace QMAPP.FJC.Web.Models.ParameterQuery { public class ParameterQueryModel : QDGModel { /// /// 工作中心 /// [Description("工作中心")] [HTMLInput(UpdateRead = false, required = true, JsonUtl = "/Dict/GetAllWorkCenterComboxSource?kind=0", MaxLength = 50)] [InputType(inputType.combobox)] public string WorkCenter { get; set; } /// /// 设备 /// [Description("设备")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 50)] [InputType(inputType.combobox)] public string MachineCode { get; set; } /// /// 模架 /// [Description("模架")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 50)] [InputType(inputType.combobox)] public string MouldCode { get; set; } /// /// 零件条码 /// [Description("零件条码")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 50)] [InputType(inputType.text)] public string ProductCode { get; set; } [Description("加工日期")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 8, FormatDate = "yyyy-MM-dd HH:mm:ss")] [InputType(inputType.datebox)] public string CREATEDATESTART { get; set; } [Description("至")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 8, FormatDate = "yyyy-MM-dd HH:mm:ss")] [InputType(inputType.datebox)] public string CREATEDATEEND { get; set; } /// /// 表格视图名称,不指定则加载默认视图 /// public string GridViewName { get; set; } /// /// 参数列已加载 /// public bool ColumnsLoaded { get; set; } /// /// 参数列名 /// public List ParamColumns { get; set; } /// /// 参数表 /// public string Tables { get; set; } /// /// 字段 /// public string Fileds { get; set; } } }