Files
tnb.server/BasicData/Tnb.BasicData.Entities/Dto/BasCalendar/CalendarInput.cs
2023-06-29 17:47:37 +08:00

28 lines
806 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tnb.BasicData.Entities.Dto
{
public class CalendarInput
{
public string? datetext { get; set; }
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[]? startenday { get; set; }
public int[]? weekday { get; set; }
public string? datetype { get; set; }
public string? workhour { get; set; }
public string? worktype { get; set; }
}
}