31 lines
1.2 KiB
C#
31 lines
1.2 KiB
C#
using System;
|
|
using System.ComponentModel;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace WX.CRM.Model.Entity
|
|
{
|
|
public partial class CSVR_BLACKNUMBER
|
|
{
|
|
[DisplayName("黑名单Id")]
|
|
[NotMapped]
|
|
public decimal map_PKID { get { return this.PKID; } set { this.PKID = value; } }
|
|
[DisplayName("客户ID")]
|
|
[NotMapped]
|
|
public string map_RESID { get { return this.RESID; } set { this.RESID = value; } }
|
|
[DisplayName("黑名单类型")]
|
|
[NotMapped]
|
|
public string map_BLACKTYPE { get { return this.BLACKTYPE; } set { this.BLACKTYPE = value; } }
|
|
[DisplayName("备注")]
|
|
[NotMapped]
|
|
public string map_REASON { get { return this.REASON; } set { this.REASON = value; } }
|
|
[DisplayName("添加时间")]
|
|
[NotMapped]
|
|
public Nullable<System.DateTime> map_CTIME { get { return this.CTIME; } set { this.CTIME = value; } }
|
|
[DisplayName("添加人")]
|
|
[NotMapped]
|
|
public Nullable<decimal> map_CREATEUSRE { get { return this.CREATEUSRE; } set { this.CREATEUSRE = value; } }
|
|
[NotMapped]
|
|
public decimal? map_MOBILE { get; set; }
|
|
}
|
|
}
|