| 123456789101112131415161718192021222324252627282930313233 |
- package com.xjrsoft.module.student.dto;
- import io.swagger.annotations.ApiModelProperty;
- import lombok.Data;
- import java.time.LocalDate;
- /**
- * @title:
- * @Author szs
- * @Date: 2023-12-25
- * @Version 1.0
- */
- @Data
- public class EnrollmentStatisticsInfoDto {
- /**
- * 年
- */
- @ApiModelProperty("年")
- private String year;
- /**
- * 年月
- */
- @ApiModelProperty("年月")
- private String yearMonth;
- /**
- * 年月日
- */
- @ApiModelProperty("年月日")
- private String day;
- }
|