|
@@ -46,19 +46,19 @@ namespace Hotline.Schedulings
|
|
|
/// <summary>
|
|
|
/// 上班时间
|
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription = "上班时间")]
|
|
|
- public DateTime? WorkingTime { get; set; }
|
|
|
+ [SugarColumn(ColumnDataType = "time", ColumnDescription = "上班时间")]
|
|
|
+ public string? WorkingTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 下班时间
|
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription = "下班时间")]
|
|
|
- public DateTime? OffDutyTime { get; set; }
|
|
|
+ [SugarColumn(ColumnDataType = "time", ColumnDescription = "下班时间")]
|
|
|
+ public string? OffDutyTime { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
|
/// 排班时间
|
|
|
/// </summary>
|
|
|
- [SugarColumn(ColumnDescription = "排班时间")]
|
|
|
+ [SugarColumn( ColumnDescription = "排班时间")]
|
|
|
public DateTime? SchedulingTime { get; set; }
|
|
|
|
|
|
/// <summary>
|