Commit b2ecbbea4b0163c5e5af957b62a8a5e5da885df0
1 parent
06df5aa370
Exists in
master
提交代码
Showing 2 changed files with 9 additions and 1 deletions
mainData/src/main/resources/mainOrm/MedVaccinename.xml
View file @
b2ecbbe
| ... | ... | @@ -38,7 +38,7 @@ |
| 38 | 38 | |
| 39 | 39 | <sql id="MedVaccineNameCondition"> |
| 40 | 40 | <where> |
| 41 | - 1 = 1 | |
| 41 | + 1 = 1 and VN_ISINPLAN = 2 | |
| 42 | 42 | <if test="vnId != null and vnId != ''"> |
| 43 | 43 | and vn_id = #{vnId,jdbcType=VARCHAR} |
| 44 | 44 | </if> |
| ... | ... | @@ -101,6 +101,7 @@ |
| 101 | 101 | FROM med_VaccineName , table(splitstr(VN_MONTHAGE, ',')) b |
| 102 | 102 | WHERE VN_MONTHAGE IS NOT NULL |
| 103 | 103 | AND ISDELETE = 1 |
| 104 | + AND VN_ISINPLAN = 2 | |
| 104 | 105 | ORDER BY MONTH_AGE,VN_VACCINETYPE |
| 105 | 106 | </select> |
| 106 | 107 |
webApi/src/main/resources/spring/applicationContext.xml
View file @
b2ecbbe