Commit b2ecbbea4b0163c5e5af957b62a8a5e5da885df0

Authored by landong2015
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, &apos;,&apos;)) 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
... ... @@ -69,6 +69,13 @@
69 69 </property>
70 70 </bean>
71 71  
  72 + <!-- mommybaby数据库 -->
  73 +
  74 +
  75 +
  76 +
  77 +
  78 +
72 79 <!-- manage transaction -->
73 80 <bean id="mainTransactionManager"
74 81 class="org.springframework.jdbc.datasource.DataSourceTransactionManager">