ClassTimeCalendarVo.java 743 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. package com.xjrsoft.module.classtime.vo;
  2. import io.swagger.annotations.ApiModelProperty;
  3. import lombok.Data;
  4. import java.util.Date;
  5. /**
  6. * @title: 节假日调课设置表单出参
  7. * @Author dzx
  8. * @Date: 2024-09-26
  9. * @Version 1.0
  10. */
  11. @Data
  12. public class ClassTimeCalendarVo {
  13. /**
  14. * 主键编号
  15. */
  16. @ApiModelProperty("主键编号")
  17. private Long id;
  18. /**
  19. * 课时统计(class_time_statistics)
  20. */
  21. @ApiModelProperty("课时统计(class_time_statistics)")
  22. private Long classTimeStatisticsId;
  23. /**
  24. * 补班日期
  25. */
  26. @ApiModelProperty("补班日期")
  27. private Integer supplementDate;
  28. /**
  29. * 补课日期
  30. */
  31. @ApiModelProperty("补课日期")
  32. private Date replaceDate;
  33. }