huliguo
2025-04-30 ea9b12465c90fc72c40f3bd87c90785dfc2984e2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package com.cl.pojo.vo.screen;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@ApiModel("困难精神残疾人医疗救助人数VO")
@Data
public class DifficultyVO {
    @ApiModelProperty(value = "困难精神残疾人医疗救助人数-门诊服药")
    private Integer difficultyMedication;
 
    @ApiModelProperty(value = "困难精神残疾人医疗救助人数-住院治疗")
    private Integer difficultyHospitalisation;
}