路泰机电科技体检——数据平台后端
zhaowenxuan
2025-06-12 493d39e60bae93a724448af7dd53e2ff10b927c8
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
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
package com.example.constant;
 
/**
 * @Company: 西安路泰科技有限公司
 * @Author: zhaowenxuan
 * @Date: 2024/12/25 16:10
 */
public class ApiParamsConstantsLis {
 
    /**
     * 门诊号码
     */
    public static final String PATIENTNO = "patientno";
 
    /**
     * 挂号号码
     */
    public static final String GH_PATIENTNO = "gh_patientno";
 
    /**
     * 标本条形码
     */
    public static final String TXM = "txm";
 
    /**
     * 辅助号码
     */
    public static final String PRINTNO = "printno";
 
    /**
     * 病人姓名
     */
    public static final String PATIENTNAME = "patientname";
 
    /**
     * 出生日期
     */
    public static final String BIRTHDAY = "birthday";
 
    /**
     * 身份证号
     */
    public static final String SFZH = "sfzh";
 
    /**
     * 1男2女0未知 必须提供
     * 性别
     */
    public static final String GENDER = "gender";
 
    /**
     * 地址
     */
    public static final String ADDRESS = "address";
 
    /**
     * 电话
     */
    public static final String TELEPHONE = "telephone";
 
    /**
     * 医保卡号
     */
    public static final String YBKH = "ybkh";
 
    /**
     * 体检单位
     */
    public static final String TJDW = "tjdw";
 
    /**
     * 默认1 必须提供
     * 是否启用
     */
    public static final String ISACTIVE = "isactive";
 
    /**
     * 备注
     */
    public static final String MEMO = "memo";
 
    /**
     * 临床诊断
     */
    public static final String DIAGNOSE = "diagnose";
 
    /**
     * 送检医生代码
     */
    public static final String SENDDOCTOR = "senddoctor";
 
    /**
     * 送检医生姓名
     */
    public static final String SENDDOCTORNAME = "senddoctorname";
 
    /**
     * 送检科室代码
     */
    public static final String SENDDEPARTCODE = "senddepartcode";
 
    /**
     * 送检科室名称
     */
    public static final String SENDDEPARTNAME = "senddepartname";
 
    /**
     * 开单科室代码
     */
    public static final String APPLYDEPARTCODE = "applydepartcode";
 
    /**
     * 开单科室名称
     */
    public static final String APPLYDEPARTNAME = "applydepartname";
 
    /**
     * 开单医生代码
     */
    public static final String APPLYDOCTORCODE = "applydoctorcode";
 
    /**
     * 开单医生名称
     */
    public static final String APPLYDOCTORNAME = "applydoctorname";
 
    /**
     * 开单时间
     */
    public static final String APPLYDATETIME = "applydatetime";
 
    /**
     * 采样时间
     */
    public static final String GATHERDATETIME = "gatherdatetime";
 
    /**
     * 采样医生编码
     */
    public static final String GATHERDOCTORCODE = "gatherdoctorcode";
 
    /**
     * 采样医生姓名
     */
    public static final String GATHERDOCTORNAME = "gatherdoctorname";
 
    /**
     * 床号
     */
    public static final String BEDNO = "bedno";
 
    /**
     * 必须提供[yyyy-mm-dd hh:mi:ss]
     * 送检日期和开单时间
     */
    public static final String SENDDATE = "senddate";
 
    /**
     * 必须提供
     * 例如: SFXMID  : 1001
     * 那么: (诊疗项目)里面的SFXMID也要有: 1001
     * 必须跟(诊疗项目)里面的SFXMID一致
     * 诊疗项目代码
     */
    public static final String SFXMID = "sfxmid";
 
    /**
     * 必须提供
     * 例如: SFXMNAME : 肝功能6项
     * 那么: (诊疗项目)里面的SFXMNAME也要有: 肝功能6项
     * 必须跟(诊疗项目)里面的SFXMNAME名称一致
     * 诊疗项目名称
     */
    public static final String SFXMNAME = "sfxmname";
 
    /**
     * 诊疗项目单价
     */
    public static final String SFXMPRICE = "sfxmprice";
 
    /**
     * 收费人员姓名
     */
    public static final String SFYNAME = "sfyname";
 
    /**
     * 开单日期, 必须提供
     * 收费日期
     */
    public static final String SFDATE = "sfdate";
 
    /**
     * 必须提供,机构ID,需和LIS工程师沟通
     * 医院编号
     */
    public static final String HOSPITALID = "hospitalid";
 
    /**
     * 数量
     */
    public static final String QUALITY = "quality";
 
    /**
     * 卡类型
     */
    public static final String CARDTYPE = "cardtype";
 
    /**
     * 就诊类别 1:门诊  2:住院  3:体检
     */
    public static final String PATIENTTYPE = "patienttype";
 
    /**
     * 主键
     * 医嘱信息,保证值唯一性
     * 用于HIS交互索引
     * *每条指标不重复的唯一值,
     * 例如:
     * 甲某做了
     * 血常规 对应的Keyvalue是 1111
     * 大生化 对应的Keyvalue是 2222
     * 尿常规 对应的Keyvalue是 3333
     *
     * 丁某做了
     * 血常规 对应的Keyvalue是 4444
     * 大生化 对应的Keyvalue是 5555
     * 尿常规 对应的Keyvalue是 6666
     */
    public static final String KEYVALUE = "keyvalue";
 
    /**
     * 必须提供0:不是急诊  1:是急诊   默认:0
     * 急诊标志
     */
    public static final String JIZHENBZ = "jizhenbz";
 
    /**
     * 项目类型编号
     */
    public static final String SpecimenCode = "specimencode";
 
    /**
     * 项目类型名称
     */
    public static final String SpecimenDesc = "specimendesc";
 
    /**
     * 检验项目明细集合
     */
    public static final String mxList = "mxList";
 
    /**
     * 每条明细的唯一主键
     */
    public static final String PRIMARY_KEY = "primaryKey";
 
    /**
     * 退费医生ID
     */
    public static final String TFDOCTORID = "tfDoctorId";
 
    /**
     * 退费医生名
     */
    public static final String TFDOCTORNAME = "tfDoctorName";
 
    /**
     * 退费科室id
     */
    public static final String TFDEPARTID = "tfdepartid";
 
    /**
     * 退费科室名
     */
    public static final String TFDEPARTNAME = "tfdepartname";
}