huanghongfa
2020-12-03 00036b47f300ac0221075aab1e2d366003195289
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
package com.panzhihua.applets.api;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel(value = "医院信息", description = "医院信息")
public class HospitalDTO {
 
    @ApiModelProperty(notes = "医院Id")
    private Long HospitalId;
 
    @ApiModelProperty(notes = "医院名称")
    private String hisHospitalName;
 
    @ApiModelProperty(notes = "医院地址")
    private String hisHospitaladdr;
 
    @ApiModelProperty(notes = "医院联系电话")
    private String hisContactPhone;
 
    @ApiModelProperty(notes = "医院联系人")
    private String hisContactPerson;
 
    @ApiModelProperty(notes = "医院组织编码")
    private String hisOrganizationId;
 
    @ApiModelProperty(notes = "医院logo")
    private String logo;
 
    @ApiModelProperty(notes = "医院优秀科室")
    private String greatDept;
 
    @ApiModelProperty(notes = "医院等级")
    private String grade;
 
    @ApiModelProperty(notes = "医院经度")
    private Double lng;
 
    @ApiModelProperty(notes = "医院纬度")
    private Double lat;
 
    @ApiModelProperty(notes = "医院距离")
    private String distance;
 
    @ApiModelProperty(notes = "是否关注[0 未关注,1 已关注]")
    private Integer isFollow;
 
    @ApiModelProperty(notes = "关注数量")
    private Integer countFollow;
 
    @ApiModelProperty(hidden = true)
    private String goodAt;
 
    @ApiModelProperty(hidden = true)
    private String position;
 
    @ApiModelProperty(notes = "医院的描述")
    private String description;
 
    @ApiModelProperty(notes = "医院的星星")
    private Integer stars;
 
    @ApiModelProperty(notes = "机构code")
    private String organizationCode;
 
    @ApiModelProperty(notes = "0:显示医生 1:隐藏医生")
    private Integer isShow;
 
    @ApiModelProperty(notes = "1:普通医院 2:乡镇医院")
    private Integer type;
 
}