Commit 83f746b8186be39f9e6c87099624b9dc9fded33b
1 parent
c597b34f49
Exists in
master
and in
6 other branches
血压报告生成
Showing 2 changed files with 10 additions and 1 deletions
platform-dal/src/main/java/com/lyms/platform/pojo/BpReportModel.java
View file @
83f746b
... | ... | @@ -39,6 +39,15 @@ |
39 | 39 | private String bpWaveCount; |
40 | 40 | //指导 |
41 | 41 | private String guide; |
42 | + private Integer yn; | |
43 | + | |
44 | + public Integer getYn() { | |
45 | + return yn; | |
46 | + } | |
47 | + | |
48 | + public void setYn(Integer yn) { | |
49 | + this.yn = yn; | |
50 | + } | |
42 | 51 | |
43 | 52 | public String getType() { |
44 | 53 | return type; |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BloodPressureServiceImpl.java
View file @
83f746b