Browse Source

调整

master
zhangyuan 3 years ago
parent
commit
2b4c6c0f3e
  1. 4
      epmet-module/gov-org/gov-org-server/src/main/resources/mapper/IcWorkLogDao.xml

4
epmet-module/gov-org/gov-org-server/src/main/resources/mapper/IcWorkLogDao.xml

@ -49,7 +49,9 @@
AND wl.MOBILE = #{mobile}
</if>
<if test="isSelf != null and isSelf != '' and isSelf == '1' ">
AND wl.CREATED_BY = #{createdBy}
<if test="isSelf == '1' or isSelf == 1">
AND wl.CREATED_BY = #{createdBy}
</if>
</if>
<if test="startTime != null and startTime != '' ">
AND DATE_FORMAT( wl.CREATED_TIME, '%Y-%m-%d' ) >= #{startTime}

Loading…
Cancel
Save