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
package com.cl.pojo.vo.screen;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@ApiModel("残疾儿童康复救助人数VO")
@Data
public class SalvationVO {
    @ApiModelProperty(value = "残疾儿童康复救助人数-0-6岁")
    private Integer salvationBeforeSeven;
 
    @ApiModelProperty(value = "残疾儿童康复救助人数-7岁之后")
    private Integer salvationAfterSeven;
 
    @ApiModelProperty(value = "残疾儿童康复救助人数-孤独症")
    private Integer salvationAutism;
 
    @ApiModelProperty(value = "残疾儿童康复救助人数-智力")
    private Integer salvationIntellect;
 
    @ApiModelProperty(value = "残疾儿童康复救助人数-肢体")
    private Integer salvationLimb;
 
    @ApiModelProperty(value = "残疾儿童康复救助人数-言语")
    private Integer salvationSpeech;
}