using System; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { public partial class SOFT_REMOTECODE { /// /// PKID /// [DisplayName("主键")] [NotMapped] public decimal map_PKID { get { return this.PKID; } set { this.PKID = value; } } /// /// EID /// [DisplayName("工号")] [NotMapped] public decimal? map_EID { get { return this.EID; } set { this.EID = value; } } /// /// REMOTECODE /// [DisplayName("授权码")] [NotMapped] public string map_REMOTECODE { get { return this.REMOTECODE; } set { this.REMOTECODE = value; } } /// /// REMARK /// [DisplayName("备注")] [Required(ErrorMessage = "不能为空!")] [NotMapped] public string map_REMARK { get { return this.REMARK; } set { this.REMARK = value; } } /// /// CTIME /// [DisplayName("创建时间")] [NotMapped] public DateTime? map_CTIME { get { return this.CTIME; } set { this.CTIME = value; } } /// /// CREATEUSER /// [DisplayName("创建人")] [NotMapped] public decimal? map_CREATEUSER { get { return this.CREATEUSER; } set { this.CREATEUSER = value; } } } }