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
package com.cl.pojo.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("机构VO")
public class InstitutionVO {
    @ApiModelProperty(value = "机构ID")
    private Integer id;
    @ApiModelProperty(value = "机构名称")
    private String name;
    @ApiModelProperty(value = "机构类型,1-残疾人定点康复机构,2-残疾人友好医疗机构")
    private Integer type;
    @ApiModelProperty(value = "区县,1-东区,2-西区,3-仁和区,4-米易县,5-盐边县")
    private Integer county;
    @ApiModelProperty(value = "联系电话")
    private String phone;
}