using System; using WMS.Attirubte; using System.ComponentModel; namespace WMS.Model.Base { /// /// 备注字典表 /// [Serializable] [TableClmAttribute(TableName = "T_BASE_REMARK_DICTIONARY")] public partial class BaseRemarkDictionaryModel { public BaseRemarkDictionaryModel() { } #region Model private string _id=""; private string _content=""; private string _color_id=""; private string _operatorid=""; private DateTime _operatedate= DateTime.Parse("1900-01-01"); private string _remark_type=""; private string _vc_dictionary_name=""; /// /// 备注编号 /// [DisplayName("备注编号")] public string ID { set { _id = value; } get { return _id; } } /// /// 备注类型 /// [DisplayName("备注类型")] [TableClmAttribute(JoinTableClmName = "VC_DICTIONARY_NAME", JoinTableClm = "VC_CHAR_VALUE", ClmJoinTable = "t_sys_dictionary_tab", JoinTableWhere = " VC_DICTIONARY_TYPE = 'REMARK_TYPE' and c_flag = '1' ")] public string REMARK_TYPE { set { _remark_type = value; } get { return _remark_type; } } /// /// 备注类型 /// [DisplayName("备注类型")] [TableClm(NoSelect = false)] public string VC_DICTIONARY_NAME { set { _vc_dictionary_name = value; } get { return _vc_dictionary_name; } } /// /// 备注内容 /// [DisplayName("备注内容")] public string CONTENT { set { _content = value; } get { return _content; } } /// /// 颜色编号 /// [DisplayName("颜色")] public string COLOR_ID { set { _color_id = value; } get { return _color_id; } } /// /// 操作人 /// [DisplayName("操作人")] [TableClmAttribute(JoinTableClmName = "NAME", JoinTableClm = "USER_ID", ClmJoinTable = "T_BASE_USERINFO")] public string OPERATORID { set { _operatorid = value; } get { return _operatorid; } } /// /// 操作时间 /// [DisplayName("操作时间")] public DateTime OPERATEDATE { set { _operatedate = value; } get { return _operatedate; } } #endregion Model } }