| 12345678910111213141516171819202122232425262728293031 |
- package com.xjrsoft.module.student.dto;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.io.Serializable;
- /**
- * @title: 导出班级量化考核入参
- * @Author szs
- * @Date: 2023-12-28
- * @Version 1.0
- */
- @Data
- public class QuantitativeAssessmentExcelDto implements Serializable {
- private static final long serialVersionUID = 1L;
- /**
- * 年月(2023-12)
- */
- @ApiModelProperty("年月(2023-12)")
- private String yearAndMonth;
- /**
- * 子表的类型
- */
- @ApiModelProperty("子表的类型")
- private Long baseStudentAssessmentCategoryId;
- }
|