123456789101112131415161718192021222324252627282930313233343536 |
- 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 : OpBaseDto
- {
- /// <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; }
- }
- }
|