| | |
| | | /// 年销售额 |
| | | /// </summary> |
| | | [Display(Name = "年销售额")] |
| | | [SugarColumn(ColumnDescription = "年销售额")] |
| | | public decimal sales { get; set; } = 0; |
| | | [SugarColumn(ColumnDescription = "年销售额" ,IsNullable =true)] |
| | | public decimal? sales { get; set; } = 0; |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | 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; } |
| | | |
| | | |
| | | } |