| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- package com.xjrsoft.module.classtime.vo;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.util.Date;
- /**
- * @title: 节假日调课设置表单出参
- * @Author dzx
- * @Date: 2024-09-26
- * @Version 1.0
- */
- @Data
- public class ClassTimeCalendarVo {
- /**
- * 主键编号
- */
- @ApiModelProperty("主键编号")
- private Long id;
- /**
- * 课时统计(class_time_statistics)
- */
- @ApiModelProperty("课时统计(class_time_statistics)")
- private Long classTimeStatisticsId;
- /**
- * 补班日期
- */
- @ApiModelProperty("补班日期")
- private Integer supplementDate;
- /**
- * 补课日期
- */
- @ApiModelProperty("补课日期")
- private Date replaceDate;
- }
|