Commit 35da3925eca3eedb4e7d89eefa76563b9d852185
1 parent
af600f8687
Exists in
master
and in
6 other branches
快速测量
Showing 2 changed files with 14 additions and 0 deletions
platform-biz-service/src/main/resources/mainOrm/master/MeasureDataInfoMapper.xml
View file @
35da392
| ... | ... | @@ -269,6 +269,10 @@ |
| 269 | 269 | and record_count = #{recordCount,jdbcType=INTEGER} |
| 270 | 270 | </if> |
| 271 | 271 | |
| 272 | + <if test="measureUserId != null and measureUserId >= 0"> | |
| 273 | + and measure_user_id = #{measureUserId,jdbcType=INTEGER} | |
| 274 | + </if> | |
| 275 | + | |
| 272 | 276 | <if test="recordContent != null"> |
| 273 | 277 | and record_content = #{recordContent,jdbcType=VARCHAR} |
| 274 | 278 | </if> |
platform-dal/src/main/java/com/lyms/platform/query/MeasureDataInfoQuery.java
View file @
35da392
| ... | ... | @@ -90,6 +90,16 @@ |
| 90 | 90 | |
| 91 | 91 | private List<String> hospitalIds; |
| 92 | 92 | |
| 93 | + private String recordContent; | |
| 94 | + | |
| 95 | + public String getRecordContent() { | |
| 96 | + return recordContent; | |
| 97 | + } | |
| 98 | + | |
| 99 | + public void setRecordContent(String recordContent) { | |
| 100 | + this.recordContent = recordContent; | |
| 101 | + } | |
| 102 | + | |
| 93 | 103 | public Date getModifiedTimeStart() { |
| 94 | 104 | return modifiedTimeStart; |
| 95 | 105 | } |