| | |
| | | public string OrderName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工作开始日期 |
| | | /// </summary> |
| | | [Display(Name = "工作开始日期")] |
| | | [SugarColumn(ColumnDescription = "工作开始日期", IsNullable = true)] |
| | | public DateTime? WordStartTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工作结束时间 |
| | | /// </summary> |
| | | [Display(Name = "工作结束日期")] |
| | | [SugarColumn(ColumnDescription = "工作结束日期", IsNullable = true)] |
| | | public DateTime? WordEndTime { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | | /// 工作开始时间 |
| | | /// </summary> |
| | | [Display(Name = "工作开始时间")] |
| | | [SugarColumn(ColumnDescription = "工作开始时间", IsNullable = true)] |
| | | public DateTime? WordStartTime { get; set; } |
| | | public DateTime? StartTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工作结束时间 |
| | | /// </summary> |
| | | [Display(Name = "工作结束时间")] |
| | | [SugarColumn(ColumnDescription = "工作结束时间", IsNullable = true)] |
| | | public DateTime? WordEndTime { get; set; } |
| | | public DateTime? EndTime { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 需求 |
| | |
| | | /// 工作方式 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "工作方式", IsNullable = true)] |
| | | public WorkerTypes? WorkerType { get; set; } |
| | | public int? WorkerType { get; set; } |
| | | |
| | | |
| | | /// <summary> |
| | |
| | | /// 招工状态 |
| | | /// </summary> |
| | | [SugarColumn(ColumnDescription = "招工状态", IsNullable = true)] |
| | | public OrderStatuses? OrderStatus { get; set; } |
| | | public int? OrderStatus { get; set; } |
| | | } |
| | | |
| | | |