WageSheetMonthWorkdaysDto.cs 953 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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
  19. {
  20. public int UserId { get; set; }
  21. /// <summary>
  22. /// 月份Id
  23. /// </summary>
  24. public int Id { get; set; }
  25. /// <summary>
  26. /// 年月
  27. /// </summary>
  28. public string YearMonth { get; set; }
  29. public string StartDate { get; set; }
  30. public string EndDate { get; set; }
  31. /// <summary>
  32. /// 日期信息
  33. /// </summary>
  34. public List<CalendarInfoView> CalendarInfos { get; set; }
  35. }
  36. }