Browse Source

Merge remote-tracking branch 'remotes/origin/dev_bugfix_ljj'

dev
jianjun 3 years ago
parent
commit
7a32ad06ef
  1. 3
      epmet-user/epmet-user-server/src/main/resources/mapper/IcVaccineDao.xml

3
epmet-user/epmet-user-server/src/main/resources/mapper/IcVaccineDao.xml

@ -61,6 +61,9 @@
<if test='null != endTime and "" != endTime'> <if test='null != endTime and "" != endTime'>
AND b.INOCULATE_TIME <![CDATA[ <= ]]> #{endTime} AND b.INOCULATE_TIME <![CDATA[ <= ]]> #{endTime}
</if> </if>
<if test='isResiUser != null and isResiUser != ""'>
AND b.IS_RESI_USER = #{isResiUser}
</if>
ORDER BY b.INOCULATE_TIME DESC, b.id ASC ORDER BY b.INOCULATE_TIME DESC, b.id ASC
</select> </select>

Loading…
Cancel
Save