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("大屏数据")
@Data
public class RightDownVO {
    @ApiModelProperty(value = "公益文体活动-开展次数")
    private Integer activityFrequency;
 
    @ApiModelProperty(value = "公益文体活动-参加人数")
    private Integer educationNumber;
 
    @ApiModelProperty(value = "服务”一件事“办件数")
    private Integer matter;
 
    @ApiModelProperty(value = "家庭医生签约增值服务数")
    private Integer doctorApprecitation;
 
    @ApiModelProperty(value = "困难重度残疾人家庭无障碍改造实施改造户数")
    private Integer remould;
 
    @ApiModelProperty(value = "残疾人接访情况-办公室接访")
    private Integer interviewsOffice;
 
    @ApiModelProperty(value = "残疾人接访情况-电话接访")
    private Integer interviewsPhone;
 
    @ApiModelProperty(value = "残疾人接访情况-上级交办")
    private Integer interviewsSuperior;
 
    @ApiModelProperty(value = "残疾人接访情况-12345交办")
    private Integer interviewsHotline;
}