| | |
| | | /// 实体:客户管理 |
| | | /// </summary> |
| | | [Description("Primary:ID")] |
| | | [DisplayName("客户管理")] |
| | | [Serializable] |
| | | [SugarTable("BAS_CUSTOMER")] |
| | | public class BAS_CUSTOMER : DbEntityWithAuth |
| | |
| | | |
| | | #region 公共属性 |
| | | /// <summary> |
| | | /// 客户代码 |
| | | /// 客户编码 |
| | | /// </summary> |
| | | [DisplayName("客户编码")] |
| | | public string CUST_CODE { get; set; } |
| | | /// <summary> |
| | | /// 客户中文名称 |
| | | /// </summary> |
| | | [DisplayName("客户中文名称")] |
| | | public string CUST_NAME_CN { get; set; } |
| | | /// <summary> |
| | | /// 客户英文名称 |
| | | /// </summary> |
| | | [DisplayName("客户英文名称")] |
| | | public string CUST_NAME_EN { get; set; } |
| | | /// <summary> |
| | | /// 客户类型 |
| | | /// </summary> |
| | | [DisplayName("客户类型")] |
| | | public string CUST_TYPE { get; set; } |
| | | /// <summary> |
| | | /// 客户级别 |
| | | /// </summary> |
| | | [DisplayName("客户级别")] |
| | | public string CUST_LEVEL { get; set; } |
| | | /// <summary> |
| | | /// 客户区域 |
| | | /// </summary> |
| | | [DisplayName("客户区域")] |
| | | public string CUST_AREA { get; set; } |
| | | /// <summary> |
| | | /// 客户联系人 |
| | | /// </summary> |
| | | [DisplayName("客户联系人")] |
| | | public string CUST_CONTACT { get; set; } |
| | | /// <summary> |
| | | /// 客户地址 |
| | | /// </summary> |
| | | [DisplayName("客户地址")] |
| | | public string CUST_ADDRESS { get; set; } |
| | | /// <summary> |
| | | /// 客户电话 |
| | | /// </summary> |
| | | [DisplayName("客户电话")] |
| | | public string CUST_TEL { get; set; } |
| | | /// <summary> |
| | | /// 客户邮箱 |
| | | /// </summary> |
| | | [DisplayName("客户邮箱")] |
| | | public string CUST_EMAIL { get; set; } |
| | | /// <summary> |
| | | /// 备注 |
| | | /// </summary> |
| | | [DisplayName("备注")] |
| | | public string REMARK { get; set; } |
| | | #endregion |
| | | |