47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class BAS_PARAMETERGROUP
|
|
{
|
|
[DisplayName("分组ID")]
|
|
[Required(ErrorMessage = "分组ID不能为空")]
|
|
[NotMapped]
|
|
public string map_GROUPID
|
|
{
|
|
get { return this.GROUPID; }
|
|
set { this.GROUPID = value; }
|
|
}
|
|
|
|
[DisplayName("分组名称")]
|
|
[Required(ErrorMessage = "名称不能为空")]
|
|
[NotMapped]
|
|
public string map_GROUPNAME
|
|
{
|
|
get { return this.GROUPNAME; }
|
|
set { this.GROUPNAME = 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; }
|
|
}
|
|
|
|
}
|
|
}
|