huliguo
2025-04-30 ea9b12465c90fc72c40f3bd87c90785dfc2984e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
package com.cl.pojo.vo.screen;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@ApiModel("右下角模块数据VO")
@Data
public class EducationVO {
    @ApiModelProperty(value = "适龄残疾儿童少年义务教育-一年级")
    private Integer educationOne;
 
    @ApiModelProperty(value = "适龄残疾儿童少年义务教育-二年级")
    private Integer educationTwo;
 
    @ApiModelProperty(value = "适龄残疾儿童少年义务教育-三年级")
    private Integer educationThree;
 
    @ApiModelProperty(value = "适龄残疾儿童少年义务教育-四年级")
    private Integer educationFour;
 
    @ApiModelProperty(value = "适龄残疾儿童少年义务教育-五年级")
    private Integer educationFive;
 
    @ApiModelProperty(value = "适龄残疾儿童少年义务教育-六年级")
    private Integer educationSix;
 
    @ApiModelProperty(value = "适龄残疾儿童少年义务教育-七年级")
    private Integer educationSeven;
 
    @ApiModelProperty(value = "适龄残疾儿童少年义务教育-八年级")
    private Integer educationEight;
 
    @ApiModelProperty(value = "适龄残疾儿童少年义务教育-九年级")
    private Integer educationNine;
}