using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Mvc.Html; using System.Web.UI.WebControls; using QMFrameWork.WebUI.Attribute; using QMFrameWork.WebUI; namespace QMAPP.MD.Web.Models { /// /// 作 用:班组成员 /// 作 者:周晓东 /// 编写日期:2017年11月21日 /// public class TeamMemberModel : QDGModel { /// /// 班组主键 /// [Description("主键")] [HTMLInput(UpdateRead = false, required = true, MaxLength = 36)] [InputType(inputType.hidden)] [DGColumn(Hidden = true, PrimaryKey = true)] public string PID { get; set; } /// /// 工厂 /// [Description("工厂")] [HTMLInput(UpdateRead = true, required = true, JsonUtl = "/Dict/GetFactoryComboxSource", MaxLength = 15, Width = 160)] [InputType(inputType.combobox)] [DGColumn(Sortable = true, Width = 100, DataAlign = DataAlign.left)] public string FACTORY_CODE { get; set; } /// /// 工厂 /// [Description("工厂")] [DGColumn(Sortable = true, Width = 300, DataAlign = DataAlign.left)] public string FACTORY_NAME { get; set; } /// /// 班组 /// [Description("班组名称")] [HTMLInput(UpdateRead = false, required = true, Width = 160)] [InputType(inputType.combobox)] public string TEAM_CODE { get; set; } /// /// 班组名称 /// [Description("班组名称")] [DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string TEAM_NAME { get; set; } /// ///维修呼叫 ///质量呼叫 ///物料呼叫 /// [Description("班组类型")] [HTMLInput(UpdateRead = false, required = true, Width = 160, JsonUtl = "/Dict/GetConfigDetailComboxSource?kind=CALL_TYPE")] [InputType(inputType.combobox)] public string TEAMTYPE { get; set; } [Description("班组类型")] [DGColumn(frozenColumns = false, Sortable = false, Width = 100, DataAlign = DataAlign.center)] public string TEAMTYPE_TXT { get; set; } [Description("负责区域")] [HTMLInput(UpdateRead = false, required = true, Width = 160)] [InputType(inputType.combobox)] public string WORKCELL_CODE { get; set; } [Description("负责区域")] [DGColumn(frozenColumns = false, Sortable = false, Width = 100, DataAlign = DataAlign.center)] public string WORKCELL_NAME { get; set; } /// /// 成员编号 /// [Description("成员名称")] [HTMLInput(UpdateRead = false, required = true, Width = 160, JsonUtl = "/TeamMember/GetUserComboxSource")] [InputType(inputType.combobox)] public string MEMBER_CODE { get; set; } /// /// 成员名称 /// [Description("成员名称")] [DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string MEMBER_NAME { get; set; } /// /// 是否班长 /// [Description("是否班长")] [DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string IS_LEADER { get; set; } /// /// 是否班长 /// [Description("是否班长")] //[HTMLInput(UpdateRead = true, required = true, MaxLength = 6, CustomType = "NOCHS")] //[InputType(inputType.checkBox)] public bool IS_LEADER_CK { get; set; } /// /// 是否呼叫 /// [Description("是否呼叫")] [DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string IS_CALL { get; set; } /// /// 是否呼叫 /// [Description("是否呼叫")] //[HTMLInput(UpdateRead = true, required = true, MaxLength = 20)] //[InputType(inputType.hidden)] public bool IS_CALL_CK { get; set; } /// /// 呼叫等级 /// [Description("呼叫等级")] [HTMLInput(UpdateRead = false, required = false, Width = 160, JsonUtl = "/TeamMember/GetCallLevelComboxSource")] [InputType(inputType.combobox)] [DGColumn(frozenColumns = false, Sortable = true, Width = 100, DataAlign = DataAlign.center)] public string CALL_LEVEL { get; set; } /// ///描述 /// [Description("描  述")] [HTMLInput(UpdateRead = false, MaxLength = 100, Width = 160, Height = 50)] [InputType(inputType.textArea)] [DGColumn(frozenColumns = false, Sortable = true, Width = 300, DataAlign = DataAlign.center)] public string REMARK { get; set; } /// /// 创建用户 /// //[Description("创建用户")] //public string CREATEUSER { get; set; } ///// ///// 创建时间 ///// //[Description("创建时间")] //public DateTime CREATEDATE { get; set; } ///// ///// 更新用户 ///// //[Description("更新用户")] //public string UPDATEUSER { get; set; } ///// ///// 更新时间 ///// //[Description("更新时间")] //public DateTime UPDATEDATE { get; set; } /// /// 删除标记 /// //[Description("删除标记")] //public string FLGDEL { get; set; } } }