wlzboy
2025-12-06 5d75fcaea0a3774052b7484a4ffe755258502363
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
package com.ruoyi.system.domain;
 
/**
 * 医院数据同步DTO
 * 用于从 SQL Server 查询医院数据
 * 
 * @author ruoyi
 */
public class HospDataSyncDTO
{
    /** 医院ID */
    private Integer hospId;
 
    /** 医院名称 */
    private String hospName;
 
    /** 城市ID */
    private Integer hospCityId;
 
    /** 医院简称 */
    private String hospShort;
 
    /** 省份 */
    private String hopsProvince;
 
    /** 城市 */
    private String hopsCity;
 
    /** 区域 */
    private String hopsArea;
 
    /** 医院地址 */
    private String hospAddress;
 
    /** 医院电话 */
    private String hospTel;
 
    /** 单位ID */
    private Integer hospUnitId;
 
    /** 状态 */
    private Integer hospState;
 
    /** OA ID */
    private String hospOaId;
 
    /** 介绍人ID */
    private Integer hospIntroducerId;
 
    /** 介绍日期 */
    private String hospIntroducerDate;
 
    /** 医院级别 */
    private Integer hospLevel;
 
    public Integer getHospId() {
        return hospId;
    }
 
    public void setHospId(Integer hospId) {
        this.hospId = hospId;
    }
 
    public String getHospName() {
        return hospName;
    }
 
    public void setHospName(String hospName) {
        this.hospName = hospName;
    }
 
    public Integer getHospCityId() {
        return hospCityId;
    }
 
    public void setHospCityId(Integer hospCityId) {
        this.hospCityId = hospCityId;
    }
 
    public String getHospShort() {
        return hospShort;
    }
 
    public void setHospShort(String hospShort) {
        this.hospShort = hospShort;
    }
 
    public String getHopsProvince() {
        return hopsProvince;
    }
 
    public void setHopsProvince(String hopsProvince) {
        this.hopsProvince = hopsProvince;
    }
 
    public String getHopsCity() {
        return hopsCity;
    }
 
    public void setHopsCity(String hopsCity) {
        this.hopsCity = hopsCity;
    }
 
    public String getHopsArea() {
        return hopsArea;
    }
 
    public void setHopsArea(String hopsArea) {
        this.hopsArea = hopsArea;
    }
 
    public String getHospAddress() {
        return hospAddress;
    }
 
    public void setHospAddress(String hospAddress) {
        this.hospAddress = hospAddress;
    }
 
    public String getHospTel() {
        return hospTel;
    }
 
    public void setHospTel(String hospTel) {
        this.hospTel = hospTel;
    }
 
    public Integer getHospUnitId() {
        return hospUnitId;
    }
 
    public void setHospUnitId(Integer hospUnitId) {
        this.hospUnitId = hospUnitId;
    }
 
    public Integer getHospState() {
        return hospState;
    }
 
    public void setHospState(Integer hospState) {
        this.hospState = hospState;
    }
 
    public String getHospOaId() {
        return hospOaId;
    }
 
    public void setHospOaId(String hospOaId) {
        this.hospOaId = hospOaId;
    }
 
    public Integer getHospIntroducerId() {
        return hospIntroducerId;
    }
 
    public void setHospIntroducerId(Integer hospIntroducerId) {
        this.hospIntroducerId = hospIntroducerId;
    }
 
    public String getHospIntroducerDate() {
        return hospIntroducerDate;
    }
 
    public void setHospIntroducerDate(String hospIntroducerDate) {
        this.hospIntroducerDate = hospIntroducerDate;
    }
 
    public Integer getHospLevel() {
        return hospLevel;
    }
 
    public void setHospLevel(Integer hospLevel) {
        this.hospLevel = hospLevel;
    }
 
    @Override
    public String toString() {
        return "HospDataSyncDTO{" +
                "hospId=" + hospId +
                ", hospName='" + hospName + '\'' +
                ", hopsCity='" + hopsCity + '\'' +
                ", hopsArea='" + hopsArea + '\'' +
                '}';
    }
}