Commit 46a30fba1aefb7d5271ba1a6aac27ab80e998221
1 parent
aad8521861
Exists in
master
and in
6 other branches
update
Showing 3 changed files with 28 additions and 3 deletions
platform-biz-service/src/main/java/com/lyms/platform/permission/model/LisReportModel.java
View file @
46a30fb
... | ... | @@ -45,8 +45,19 @@ |
45 | 45 | // 医院id |
46 | 46 | private String hospitalId; |
47 | 47 | |
48 | + //联系方式 | |
49 | + private String phone; | |
50 | + | |
48 | 51 | //检验项集合 |
49 | 52 | private List<LisReportItemModel> items; |
53 | + | |
54 | + public String getPhone() { | |
55 | + return phone; | |
56 | + } | |
57 | + | |
58 | + public void setPhone(String phone) { | |
59 | + this.phone = phone; | |
60 | + } | |
50 | 61 | |
51 | 62 | public List<LisReportItemModel> getItems() { |
52 | 63 | return items; |
platform-biz-service/src/main/java/com/lyms/platform/permission/model/RisReportModel.java
View file @
46a30fb
... | ... | @@ -45,6 +45,17 @@ |
45 | 45 | // 医院id |
46 | 46 | private String hospitalId; |
47 | 47 | |
48 | + //联系方式 | |
49 | + private String phone; | |
50 | + | |
51 | + public String getPhone() { | |
52 | + return phone; | |
53 | + } | |
54 | + | |
55 | + public void setPhone(String phone) { | |
56 | + this.phone = phone; | |
57 | + } | |
58 | + | |
48 | 59 | public Integer getId() { |
49 | 60 | return id; |
50 | 61 | } |
platform-biz-service/src/main/resources/mainOrm/master/MasterLis.xml
View file @
46a30fb
... | ... | @@ -20,7 +20,8 @@ |
20 | 20 | CHECKER, |
21 | 21 | MODIFIED, |
22 | 22 | CREATED, |
23 | - HOSPITAL_ID | |
23 | + HOSPITAL_ID, | |
24 | + PHONE | |
24 | 25 | ) VALUES ( |
25 | 26 | #{lisId}, |
26 | 27 | #{title}, |
... | ... | @@ -38,7 +39,8 @@ |
38 | 39 | #{checker}, |
39 | 40 | #{modified}, |
40 | 41 | #{created}, |
41 | - #{hospitalId} | |
42 | + #{hospitalId}, | |
43 | + #{phone} | |
42 | 44 | ) |
43 | 45 | |
44 | 46 | </insert> |
... | ... | @@ -98,7 +100,8 @@ |
98 | 100 | CHECKER AS checker, |
99 | 101 | MODIFIED AS modified, |
100 | 102 | CREATED AS created, |
101 | - HOSPITAL_ID AS hospitalId | |
103 | + HOSPITAL_ID AS hospitalId, | |
104 | + PHONE AS phone | |
102 | 105 | FROM LIS_REPORT_TBL |
103 | 106 | WHERE LIS_ID = #{lisId} |
104 | 107 | AND HOSPITAL_ID = #{hospitalId} |