WageSheetMonthWorkdaysDto.cs 819 B

123456789101112131415161718192021222324252627282930313233343536
  1. using OASystem.Domain.ViewModels.PersonnelModule;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace OASystem.Domain.Dtos.PersonnelModule
  8. {
  9. /// <summary>
  10. /// 工资 工作日 Dto
  11. /// </summary>
  12. public class WageSheetMonthWorkdaysDto
  13. {
  14. }
  15. /// <summary>
  16. /// 添加 Or 修改
  17. /// </summary>
  18. public class WageSheetMonthWorkdaysAddOrEditDto : OpBaseDto
  19. {
  20. /// <summary>
  21. /// 年月
  22. /// </summary>
  23. public string YearMonth { get; set; }
  24. public string StartDate { get; set; }
  25. public string EndDate { get; set; }
  26. /// <summary>
  27. /// 日期信息
  28. /// </summary>
  29. public List<CalendarInfoView> CalendarInfos { get; set; }
  30. }
  31. }