| | |
| | | [SugarColumn(ColumnDescription = "工价", Length = 18, DecimalDigits = 2, IsNullable = true)] |
| | | public decimal? WorkPrice { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工价上限 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "工价上限", Length = 18, DecimalDigits = 2, IsNullable = true)] |
| | | public decimal? WorkPriceMax { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 招工状态 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "招工状态", IsNullable = true)] |
| | | public int? OrderStatus { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 自行安排工作时间 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "自行安排工作时间", IsNullable = true,DefaultValue = "0")] |
| | | public bool? Zixinganpai { get; set; } |
| | | } |
| | | |
| | | |