| | |
| | | /// 创建时间 |
| | | /// </summary> |
| | | [Display(Name = "创建时间 ")] |
| | | [SugarColumn(ColumnDescription = "创建时间 ")] |
| | | [SugarColumn(ColumnDescription = "创建时间 " , IsNullable = true)] |
| | | public DateTime? CreateTime { get; set; } |
| | | /// <summary> |
| | | /// 创建人 |
| | | /// </summary> |
| | | [Display(Name = "创建人 ")] |
| | | [SugarColumn(ColumnDescription = "创建人 ", Length = 100)] |
| | | [SugarColumn(ColumnDescription = "创建人 ", IsNullable = true, Length = 100)] |
| | | public string CreateBy { get; set; } |
| | | /// <summary> |
| | | /// 修改时间 |
| | | /// </summary> |
| | | [Display(Name = "修改时间 ")] |
| | | [SugarColumn(ColumnDescription = "修改时间 ")] |
| | | [SugarColumn(ColumnDescription = "修改时间 ", IsNullable = true)] |
| | | public DateTime? UpDataTime { get; set; } |
| | | /// <summary> |
| | | /// 修改人 |
| | | /// </summary> |
| | | [Display(Name = "修改人 ")] |
| | | [SugarColumn(ColumnDescription = "修改人 ", Length = 100)] |
| | | [SugarColumn(ColumnDescription = "修改人 ", IsNullable = true,Length = 100)] |
| | | public string UpDataBy { get; set; } |
| | | |
| | | |