This commit is contained in:
qianjiawei
2023-06-28 16:01:26 +08:00
parent d1053d09bd
commit 380804ee47
4 changed files with 57 additions and 6 deletions

View File

@@ -10,7 +10,12 @@ namespace Tnb.BasicData.Entities.Dto.BasCalendar
{
public string? datetext { get; set; }
public string? datetype { get; set; }
public string? workhour { get; set; }
public List<WorkHour>? workhour { get; set; }
public string? worktype { get; set; }
}
public class WorkHour
{
public string? start { get; set; }
public string? end { get; set; }
}
}