工作日历

This commit is contained in:
qianjiawei
2023-06-29 17:47:37 +08:00
parent 650daf99d5
commit 7f8fdad324
8 changed files with 264 additions and 50 deletions

View File

@@ -12,11 +12,13 @@ namespace Tnb.BasicData.Entities.Dto
public string? datetype { get; set; }
public string? workhour { get; set; }
public string? worktype { get; set; }
public int? calendartype { get; set;}
public string? workgroupid { get; set;}
public string? userid { get; set; }
}
public class CalendarBatchInput
{
public string? startday { get; set; }
public string? endday { get; set; }
public string[]? startenday { get; set; }
public int[]? weekday { get; set; }
public string? datetype { get; set; }
public string? workhour { get; set; }

View File

@@ -18,4 +18,11 @@ namespace Tnb.BasicData.Entities.Dto.BasCalendar
public string? start { get; set; }
public string? end { get; set; }
}
public class Shift
{
public string? startday { get; set; }
public string? endday { get; set; }
public WorkHour? workhour { get; set; }
}
}