using System; using System.ComponentModel; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; namespace WX.CRM.Model.Entity { public partial class SOFT_ACTIVE { [DisplayName("ID")] [NotMapped] public decimal Map_PRODUCTID { get { return this.PRODUCTID; } set { this.PRODUCTID = value; } } [DisplayName("产品编码")] [Required(ErrorMessage = "产品编码不能为空")] [NotMapped] public string Map_PRODUCTCODE { get { return this.PRODUCTCODE; } set { this.PRODUCTCODE = value; } } [DisplayName("产品名称")] [Required(ErrorMessage = "产品名称不能为空")] [NotMapped] public string Map_PRODUCTNAME { get { return this.PRODUCTNAME; } set { this.PRODUCTNAME = value; } } [DisplayName("是否显示")] [NotMapped] public short Map_ISSHOW { get { return this.ISSHOW; } set { this.ISSHOW = value; } } [DisplayName("备注")] [Required(ErrorMessage = "备注不能为空")] [NotMapped] public string Map_MEMO { get { return this.MEMO; } set { this.MEMO = value; } } [DisplayName("创建时间")] [NotMapped] public Nullable Map_CTIME { get { return this.CTIME; } set { this.CTIME = value; } } [DisplayName("创建人")] [NotMapped] public Nullable Map_CREATEUSER { get { return this.CREATEUSER; } set { this.CREATEUSER = value; } } [DisplayName("修改时间")] [NotMapped] public Nullable Map_UTIME { get { return this.UTIME; } set { this.UTIME = value; } } [DisplayName("修改人")] [NotMapped] public Nullable Map_UPDATEUSER { get { return this.UPDATEUSER; } set { this.UPDATEUSER = value; } } } }