Browse Source

为入库审批添加log日志输出

lwx_dev
erdanergou 3 years ago
parent
commit
c824dbc88a
  1. 7
      src/main/java/com/dreamchaser/depository_manage/mapper/DepositoryRecordMapper.xml

7
src/main/java/com/dreamchaser/depository_manage/mapper/DepositoryRecordMapper.xml

@ -496,6 +496,10 @@
<if test="depositoryId != null and depositoryId != ''"> <if test="depositoryId != null and depositoryId != ''">
and did = #{depositoryId} and did = #{depositoryId}
</if> </if>
<if test="mname != null and mname != ''">
and mname like CONCAT('%', #{mname}, '%')
</if>
<if test="mid != null and mid != ''"> <if test="mid != null and mid != ''">
and mid = #{mid} and mid = #{mid}
@ -884,6 +888,9 @@
<if test="mid != null and mid != ''"> <if test="mid != null and mid != ''">
and mid = #{mid} and mid = #{mid}
</if> </if>
<if test="mname != null and mname != ''">
and mname like CONCAT('%', #{mname}, '%')
</if>
<if test="applicantTime != null and applicantTime != ''"> <if test="applicantTime != null and applicantTime != ''">
and applicant_time >= #{applicantTime} and applicant_time >= #{applicantTime}
</if> </if>

Loading…
Cancel
Save