40 lines
1.6 KiB
C#
40 lines
1.6 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class SOFT_ACTIVEMODULE
|
|
{
|
|
[DisplayName("ID")]
|
|
[NotMapped]
|
|
public decimal Map_PKID { get { return this.PKID; } set { this.PKID = value; } }
|
|
[DisplayName("产品ID")]
|
|
[Required(ErrorMessage = "产品Id不能为空")]
|
|
[NotMapped]
|
|
public decimal Map_PRODUCTID { get { return this.PRODUCTID; } set { this.PRODUCTID = value; } }
|
|
[DisplayName("模块ID")]
|
|
[Required(ErrorMessage = "模块Id不能为空")]
|
|
[NotMapped]
|
|
public decimal Map_MODULEID { get { return this.MODULEID; } set { this.MODULEID = value; } }
|
|
[DisplayName("天数")]
|
|
[NotMapped]
|
|
public decimal Map_DAYS { get { return this.DAYS; } set { this.DAYS = value; } }
|
|
[DisplayName("创建时间")]
|
|
[NotMapped]
|
|
public Nullable<System.DateTime> Map_CTIME { get { return this.CTIME; } set { this.CTIME = value; } }
|
|
[DisplayName("创建人")]
|
|
[NotMapped]
|
|
public Nullable<decimal> Map_CREATEUSER { get { return this.CREATEUSER; } set { this.CREATEUSER = value; } }
|
|
[DisplayName("修改时间")]
|
|
[NotMapped]
|
|
public Nullable<System.DateTime> Map_UTIME { get { return this.UTIME; } set { this.UTIME = value; } }
|
|
[DisplayName("修改人")]
|
|
[NotMapped]
|
|
public Nullable<decimal> Map_UPDATEUSER { get { return this.UPDATEUSER; } set { this.UPDATEUSER = value; } }
|
|
|
|
}
|
|
}
|
|
|