MasterLis.xml 13.2 KB
   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
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.lyms.platform.permission.dao.master.MasterLisMapper">

<insert id="saveLisData" parameterType="com.lyms.platform.permission.model.LisReportModel">
INSERT INTO LIS_REPORT_TBL(
LIS_ID,
TITLE,
TYPE,
VCCARDNO,
NAME,
BHNUM,
AGE,
SEX,
APPLY_TIME,
CHECK_TIME,
PUBLISH_TIME,
APPLY_DOCTOR,
APPLY_DEPT,
CHECKER,
MODIFIED,
CREATED,
HOSPITAL_ID,
PHONE,
ITEM_JSON,
STATUS
) VALUES (
#{lisId},
#{title},
#{type},
#{vcCardNo},
#{name},
#{bhnum},
#{age},
#{sex},
#{applyTime},
#{checkTime},
#{publishTime},
#{applyDoctor},
#{applyDept},
#{checker},
#{modified},
#{created},
#{hospitalId},
#{phone},
#{itemJson},
#{status}
)

</insert>

<insert id="saveLisItemsData" parameterType="java.util.List">
insert into LIS_REPORT_ITEM_TBL (
LIS_ID,
CODE,
NAME,
RESULT,
RESULT_FLAG,
REF,
RESULT_TYPE,
UNIT,
PRINT_ORDER,
HOSPITAL_ID
)
values
<foreach collection="list" item="item" index="index" separator="," >
(
#{item.lisId,jdbcType=VARCHAR},
#{item.code,jdbcType=VARCHAR},
#{item.name,jdbcType=VARCHAR},
#{item.result,jdbcType=VARCHAR},
#{item.resultFlag,jdbcType=VARCHAR},
#{item.ref,jdbcType=VARCHAR},
#{item.resultType,jdbcType=VARCHAR},
#{item.unit,jdbcType=VARCHAR},
#{item.printOrder,jdbcType=VARCHAR},
#{item.hospitalId,jdbcType=VARCHAR}
)
</foreach>
</insert>

<delete id="deleteLisData" parameterType="com.lyms.platform.permission.model.LisReportModel">
DELETE FROM LIS_REPORT_TBL WHERE LIS_ID = #{lisId} AND HOSPITAL_ID = #{hospitalId}
</delete>

<select id="queryLisDataByModel" parameterType="com.lyms.platform.permission.model.LisReportQuery"
resultType="com.lyms.platform.permission.model.LisReportModel">
SELECT
ID AS id,
LIS_ID AS lisId,
TITLE AS title,
TYPE AS type,
VCCARDNO AS vcCardNo,
NAME AS name,
BHNUM AS bhnum,
AGE AS age,
SEX AS sex,
APPLY_TIME AS applyTime,
CHECK_TIME AS checkTime,
PUBLISH_TIME AS publishTime,
APPLY_DOCTOR AS applyDoctor,
APPLY_DEPT AS applyDept,
CHECKER AS checker,
MODIFIED AS modified,
CREATED AS created,
HOSPITAL_ID AS hospitalId,
PHONE AS phone,
ITEM_JSON AS itemJson
FROM LIS_REPORT_TBL
WHERE 1 = 1
<if test="lisId != null and lisId != ''">
AND LIS_ID = #{lisId}
</if>
<if test="(vcCardNo != null and vcCardNo != '') || (sINCard != null and sINCard != '') ">
AND VCCARDNO = #{vcCardNo} or VCCARDNO = #{sINCard}
</if>
<if test="(name != null and name != '') ">
AND name = #{name}
</if>
<if test="vcCardNos != null and vcCardNos.size() !=0 ">
AND VCCARDNO IN
<foreach collection="vcCardNos" item="vc"
index="index" open="(" close=")" separator=",">
#{vc}
</foreach>
</if>

<if test="phone != null and phone != ''">
AND PHONE = #{phone}
</if>
<if test="hospitalId != null and hospitalId != ''">
AND HOSPITAL_ID = #{hospitalId}
</if>

<if test="checkTime != null">
AND date_format(CHECK_TIME,'%Y-%m-%d') = #{checkTime}
</if>

<if test="titles != null and titles.size() !=0 ">
AND TITLE IN
<foreach collection="titles" item="title"
index="index" open="(" close=")" separator=",">
#{title}
</foreach>
</if>

</select>


<select id="queryLisDataByLisIdAndHid" parameterType="com.lyms.platform.permission.model.LisReportModel"
resultType="com.lyms.platform.permission.model.LisReportModel">
SELECT
ID AS id,
LIS_ID AS lisId,
TITLE AS title,
TYPE AS type,
VCCARDNO AS vcCardNo,
NAME AS name,
BHNUM AS bhnum,
AGE AS age,
SEX AS sex,
APPLY_TIME AS applyTime,
CHECK_TIME AS checkTime,
PUBLISH_TIME AS publishTime,
APPLY_DOCTOR AS applyDoctor,
APPLY_DEPT AS applyDept,
CHECKER AS checker,
MODIFIED AS modified,
CREATED AS created,
HOSPITAL_ID AS hospitalId,
PHONE AS phone,
ITEM_JSON AS itemJson
FROM LIS_REPORT_TBL
WHERE 1 = 1
<if test="lisId != null and lisId != ''">
AND LIS_ID = #{lisId}
</if>
<if test="title != null and title != ''">
AND TITLE = #{title}
</if>
<if test="hospitalId != null and hospitalId != ''">
AND HOSPITAL_ID = #{hospitalId}
</if>

</select>

<select id="queryLisItemByModel" parameterType="com.lyms.platform.permission.model.LisReportItemModel"
resultType="com.lyms.platform.permission.model.LisReportItemModel">
SELECT
LIS_ID,
CODE,
NAME,
RESULT,
RESULT_FLAG,
REF,
RESULT_TYPE,
UNIT,
PRINT_ORDER,
HOSPITAL_ID
FROM LIS_REPORT_ITEM_TBL
WHERE 1 = 1
<if test="lisId != null and lisId != ''">
AND LIS_ID = #{lisId}
</if>
<if test="hospitalId != null and hospitalId != ''">
AND HOSPITAL_ID = #{hospitalId}
</if>
</select>


<select id="queryListItems" parameterType="com.lyms.platform.permission.model.LisReportModel" resultMap="queryListItemsMap">
SELECT
LR.LIS_ID,
LR.TITLE,
LR.TYPE,
LR.VCCARDNO,
LR.NAME,
LR.BHNUM,
LR.AGE,
LR.SEX,
LR.APPLY_TIME,
LR.CHECK_TIME,
LR.PUBLISH_TIME,
LR.APPLY_DOCTOR,
LR.APPLY_DEPT,
LR.CHECKER,
LR.MODIFIED,
LR.CREATED,
LR.HOSPITAL_ID,
LR.PHONE,
LI.LIS_ID AS ITEM_LIS_ID,
LI.CODE,
LI.NAME AS ITEM_NAME,
LI.RESULT,
LI.RESULT_FLAG,
LI.REF,
LI.RESULT_TYPE,
LI.UNIT,
LI.PRINT_ORDER
FROM LIS_REPORT_ITEM_TBL LI
LEFT JOIN LIS_REPORT_TBL LR
ON LR.LIS_ID = LI.LIS_ID
WHERE
LR.VCCARDNO=#{vcCardNo}
AND
LR.HOSPITAL_ID=#{hospitalId}
</select>


<resultMap id="queryListItemsMap" type="com.lyms.platform.permission.model.LisReportModel" >
<id property="id" column="ID"/>
<result property="lisId" column="LIS_ID"/>
<result property="title" column="TITLE"/>
<result property="type" column="TYPE"/>
<result property="vcCardNo" column="VCCARDNO"/>
<result property="name" column="NAME"/>
<result property="bhnum" column="BHNUM"/>
<result property="age" column="AGE"/>
<result property="sex" column="SEX"/>
<result property="applyTime" column="APPLY_TIME"/>
<result property="checkTime" column="CHECK_TIME"/>
<result property="publishTime" column="PUBLISH_TIME"/>
<result property="applyDoctor" column="APPLY_DOCTOR"/>
<result property="applyDept" column="APPLY_DEPT"/>
<result property="checker" column="CHECKER"/>
<result property="modified" column="MODIFIED"/>
<result property="created" column="CREATED"/>
<result property="hospitalId" column="HOSPITAL_ID"/>
<result property="phone" column="PHONE"/>
<result property="itemJson" column="ITEM_JSON"/>
<result property="status" column="STATUS"/>
</resultMap>


<sql id="orderAndLimit">
<if test="sort != null and sort != '' ">
order by ${sort}
<if test="need != null">
limit #{offset, jdbcType=INTEGER} , #{limit, jdbcType=INTEGER}
</if>
</if>
</sql>


<sql id="LisCondition">
<where>
1 = 1
<if test="id != null">
AND ID = #{id}
</if>

<if test="(vcCardNos != null and vcCardNos.size() !=0) || (phones != null and phones.size() != 0) ">
AND (
<if test="vcCardNos.size() !=0 ">
VCCARDNO IN
<foreach collection="vcCardNos" item="vcCardNo"
index="index" open="(" close=")" separator=",">
#{vcCardNo}
</foreach>
OR
</if>

<if test="phones.size() !=0 ">
PHONE IN
<foreach collection="phones" item="phone"
index="index" open="(" close=")" separator=",">
#{phone}
</foreach>
</if>
)
</if>

<if test="hospitalId != null">
AND HOSPITAL_ID=#{hospitalId}
</if>

<if test="hospitalIds !=null and hospitalIds.size() !=0 ">
AND HOSPITAL_ID IN
<foreach collection="hospitalIds" item="hospitalId"
index="index" open="(" close=")" separator=",">
#{hospitalId}
</foreach>
</if>
<if test="publishTime != null">
AND PUBLISH_TIME >= date_format(#{publishTime},'%Y-%m-%d')
</if>
<if test="status != null">
AND STATUS=#{status}
</if>
</where>
</sql>



<select id="queryLisDataByQuery" parameterType="com.lyms.platform.permission.model.LisReportQuery" resultMap="queryListItemsMap">
SELECT
ID,
LIS_ID,
TITLE,
TYPE,
VCCARDNO,
NAME,
BHNUM,
AGE,
SEX,
APPLY_TIME,
CHECK_TIME,
PUBLISH_TIME,
APPLY_DOCTOR,
APPLY_DEPT,
CHECKER,
MODIFIED,
CREATED,
HOSPITAL_ID,
PHONE,
ITEM_JSON
FROM LIS_REPORT_TBL
<include refid="LisCondition"/>
<include refid="orderAndLimit"/>
</select>


<select id="queryLisDataByStatus" parameterType="com.lyms.platform.permission.model.LisReportQuery" resultType="com.lyms.platform.permission.model.LisReportModel">
SELECT
ID AS id,
LIS_ID AS lisId,
TITLE AS title,
TYPE AS type,
VCCARDNO AS vcCardNo,
APPLY_TIME AS applyTime,
CHECK_TIME AS checkTime,
PUBLISH_TIME AS publishTime,
APPLY_DOCTOR AS applyDoctor,
APPLY_DEPT AS applyDept,
HOSPITAL_ID AS hospitalId,
CHECKER AS checker,
PHONE AS phone
FROM LIS_REPORT_TBL
<include refid="LisCondition"/>
AND (LENGTH(PHONE) > 0 OR LENGTH(VCCARDNO) > 0)
<include refid="orderAndLimit"/>
</select>


<select id="queryLisDataByStatusCount" parameterType="com.lyms.platform.permission.model.LisReportQuery" resultType="int">
SELECT
COUNT(ID)
FROM LIS_REPORT_TBL
<include refid="LisCondition"/>
AND PHONE IS NOT NULL AND VCCARDNO IS NOT NULL
<include refid="orderAndLimit"/>
</select>




<select id="queryLisCount" resultType="int"
parameterType="com.lyms.platform.permission.model.LisReportQuery">
select count(1) from LIS_REPORT_TBL
<include refid="LisCondition"/>
</select>

<update id="updateAppLisStatus" parameterType="java.util.List" >
UPDATE LIS_REPORT_TBL SET STATUS = 1 WHERE ID IN
<foreach collection="list" index="index" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</update>




<insert id="saveLisDataTemp" parameterType="com.lyms.platform.permission.model.LisReportModel" >
<selectKey order="AFTER" keyProperty="id" resultType="java.lang.Integer">SELECT LAST_INSERT_ID()</selectKey>
INSERT INTO LIS_REPORT_TBL(
LIS_ID,
TITLE,
TYPE,
VCCARDNO,
NAME,
BHNUM,
AGE,
SEX,
APPLY_TIME,
CHECK_TIME,
PUBLISH_TIME,
APPLY_DOCTOR,
APPLY_DEPT,
CHECKER,
MODIFIED,
CREATED,
HOSPITAL_ID,
PHONE,
ITEM_JSON
) VALUES (
#{lisId},
#{title},
#{type},
#{vcCardNo},
#{name},
#{ bhnum},
#{age},
#{sex},
#{applyTime},
#{checkTime},
#{publishTime},
#{applyDoctor},
#{applyDept},
#{checker},
#{modified},
#{created},
#{hospitalId},
#{phone},
#{itemJson}
)

</insert>

</mapper>