工作日历

This commit is contained in:
qianjiawei
2023-06-27 17:29:40 +08:00
parent 379901c7b4
commit 8ee61dff20
5 changed files with 202 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.BasicData.Entities.Dto.BasCalendar
{
public class CalendarOut
{
public string? datetext { get; set; }
public string? datetype { get; set; }
public string? workhour { get; set; }
public string? worktype { get; set; }
}
}