| | |
| | | /// 经销商表 |
| | | /// </summary> |
| | | [SugarTable("CoreCmsDistribution",TableDescription = "经销商表")] |
| | | [SqlCodeFirst] |
| | | |
| | | public partial class CoreCmsDistribution |
| | | { |
| | | /// <summary> |
| | |
| | | /// 年销售额 |
| | | /// </summary> |
| | | [Display(Name = "年销售额")] |
| | | [SugarColumn(ColumnDescription = "年销售额")] |
| | | public decimal sales { get; set; } = 0; |
| | | [SugarColumn(ColumnDescription = "年销售额" ,IsNullable =true)] |
| | | public decimal? sales { get; set; } = 0; |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | [SugarColumn(ColumnDescription = "所属行业")] |
| | | public string profession { get; set; } |
| | | /// <summary> |
| | | /// 店铺做标牌 |
| | | /// 店铺定位 |
| | | /// </summary> |
| | | [Display(Name = "店铺定位")] |
| | | [SugarColumn(ColumnDescription = "店铺定位", IsNullable =true)] |
| | | public string storeCoordinate { get; set; } |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 身份证 |
| | | /// </summary> |
| | | [Display(Name = "身份证")] |
| | | [SugarColumn(ColumnDescription = "身份证", IsNullable = true)] |
| | | public string idCradNumber { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 学校名称 |
| | | /// </summary> |
| | | [Display(Name = "学校名称")] |
| | | [SugarColumn(ColumnDescription = "学校名称", IsNullable = true)] |
| | | public string schoolName { get; set; } |
| | | |
| | | |
| | | } |