57 lines
1.4 KiB
C#
57 lines
1.4 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class RES_CUSTOMEREXTEND
|
|
{
|
|
[DisplayName("客户编号")]
|
|
[NotMapped]
|
|
public string map_RESID
|
|
{
|
|
get { return this.RESID; }
|
|
set { this.RESID = value; }
|
|
}
|
|
|
|
[DisplayName("主类型ID")]
|
|
[NotMapped]
|
|
public string map_CUSTOMEREXTENDTYPEID
|
|
{
|
|
get { return this.CUSTOMEREXTENDTYPEID; }
|
|
set { this.CUSTOMEREXTENDTYPEID = value; }
|
|
}
|
|
|
|
[DisplayName("备注")]
|
|
[NotMapped]
|
|
public string map_MEMO
|
|
{
|
|
get { return this.MEMO; }
|
|
set { this.MEMO = value; }
|
|
}
|
|
|
|
[DisplayName("创建人")]
|
|
[NotMapped]
|
|
public decimal? map_CREATEUSER
|
|
{
|
|
get { return this.CREATEUSER; }
|
|
set { this.CREATEUSER = value; }
|
|
}
|
|
|
|
[DisplayName("创建时间")]
|
|
[NotMapped]
|
|
public DateTime? map_CTIME
|
|
{
|
|
get { return this.CTIME; }
|
|
set { this.CTIME = value; }
|
|
}
|
|
[DisplayName("分类类型")]
|
|
[NotMapped]
|
|
public string map_CUSTOMEREXTENDSUBTYPEID
|
|
{
|
|
get { return this.CUSTOMEREXTENDSUBTYPEID; }
|
|
set { this.CUSTOMEREXTENDSUBTYPEID = value; }
|
|
}
|
|
}
|
|
}
|