Commit 519f35c4ebd06aae6ef8131e969991c07a4586d2
1 parent
6f15360463
Exists in
master
and in
6 other branches
军工医院就诊卡号转换为病人ID
Showing 1 changed file with 24 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/hospitalapi/jgyy/JgyyHisService.java
View file @
519f35c
1 | +package com.lyms.hospitalapi.jgyy; | |
2 | + | |
3 | +import org.springframework.stereotype.Service; | |
4 | + | |
5 | +/** | |
6 | + * Created by Administrator on 2018/5/8. | |
7 | + */ | |
8 | +@Service("jgyyHisService") | |
9 | +public class JgyyHisService { | |
10 | + | |
11 | + /** | |
12 | + * 秦皇岛军工医院 | |
13 | + * 查询病人ID | |
14 | + * 军工医院查询lis报告先通过就诊卡号查询到病人id | |
15 | + * 通过病人id到院内系统mysql中查询 vCcardNo字段 | |
16 | + * @param vcCardNo 就诊卡号 | |
17 | + * @return | |
18 | + */ | |
19 | + public String getIdByVcCardNo(String vcCardNo){ | |
20 | + | |
21 | + return null; | |
22 | + } | |
23 | + | |
24 | +} |