using OASystem.Domain.ViewModels.PersonnelModule; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OASystem.Domain.Dtos.PersonnelModule { /// <summary> /// 工资 工作日 Dto /// </summary> public class WageSheetMonthWorkdaysDto { } /// <summary> /// 添加 Or 修改 /// </summary> public class WageSheetMonthWorkdaysAddOrEditDto { public int UserId { get; set; } /// <summary> /// 月份Id /// </summary> public int Id { get; set; } /// <summary> /// 年月 /// </summary> public string YearMonth { get; set; } public string StartDate { get; set; } public string EndDate { get; set; } /// <summary> /// 日期信息 /// </summary> public List<CalendarInfoView> CalendarInfos { get; set; } } }