33 lines
1.3 KiB
C#
33 lines
1.3 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class CSVR_RELATIONCUSTOMER
|
|
{
|
|
[DisplayName("ID")]
|
|
[NotMapped]
|
|
public decimal map_PKID { get { return this.PKID; } set { this.PKID = value; } }
|
|
[DisplayName("客户编号")]
|
|
[NotMapped]
|
|
[Required(ErrorMessage = "客户编号不能为空")]
|
|
public string map_RESID { get { return this.RESID; } set { this.RESID = value; } }
|
|
|
|
[DisplayName("相关客户编号")]
|
|
[NotMapped]
|
|
[Required(ErrorMessage = "相关客户编号不能为空")]
|
|
public string map_RELATIONRESID { get { return this.RELATIONRESID; } set { this.RELATIONRESID = value; } }
|
|
[DisplayName("备注")]
|
|
[NotMapped]
|
|
public string map_MEMO { get { return this.MEMO; } set { this.MEMO = value; } }
|
|
[DisplayName("员工")]
|
|
[NotMapped]
|
|
public Nullable<decimal> map_CREATEUSER { get { return this.CREATEUSER; } set { this.CREATEUSER = value; } }
|
|
[DisplayName("添加时间")]
|
|
[NotMapped]
|
|
public Nullable<System.DateTime> map_CTIME { get { return this.CTIME; } set { this.CTIME = value; } }
|
|
}
|
|
}
|