| | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 订单状态 |
| | | /// 订单状态 1保存 2 发布 3 中标 |
| | | /// </summary> |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "订单状态")] |
| | | public int? OrderStatus { get; set; } |
| | |
| | | [SugarColumn(IsNullable = true, ColumnDescription = "中标时间")] |
| | | public DateTime? ZhongbiaoDate { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 中标公告 |
| | | /// </summary> |
| | | [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "中标公告")] |
| | | public string Zhongbiaogonggao { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 中标公告Name |
| | | /// </summary> |
| | | [SugarColumn(Length = 512, IsNullable = true, ColumnDescription = "中标公告Name")] |
| | | public string ZhongbiaogonggaoName { get; set; } |
| | | |
| | | |
| | | |
| | | /// <summary> |
| | | /// 中标tittle |
| | | /// </summary> |
| | | [SugarColumn(Length = 200, IsNullable = true, ColumnDescription = "中标tittle")] |
| | | public string ZhongbiaoTittle { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 创建者CusExtendId |
| | | /// </summary> |
| | | [OwnerUser] |
| | | [SugarColumn(ColumnDescription = "创建者CusExtendId", IsOnlyIgnoreUpdate = true)] |
| | | public long? CusExtendId { get; set; } |
| | | |
| | | } |
| | | } |