Commit 2d727f4782b805f81d0d65cb87de26c04bcfda9d

Authored by 张志伟
1 parent 51a118ce

:sparkles: bug调整

fw-valhalla-dao/src/main/resources/mapper/SecretReportHistoryMapper.xml
... ... @@ -52,6 +52,9 @@
52 52 <if test="condition.taskType !=null">
53 53 and t1.task_type = #{condition.taskType}
54 54 </if>
  55 + <if test="condition.callType !=null">
  56 + and t1.call_type = #{condition.callType}
  57 + </if>
55 58 <if test="condition.startTime1 !=null">
56 59 and t1.call_time >= #{condition.startTime1}
57 60 </if>
... ... @@ -101,6 +104,9 @@
101 104 <if test="condition.taskType !=null">
102 105 and t1.task_type = #{condition.taskType}
103 106 </if>
  107 + <if test="condition.callType !=null">
  108 + and t1.call_type = #{condition.callType}
  109 + </if>
104 110 <if test="condition.startTime1 !=null">
105 111 and t1.call_time >= #{condition.startTime1}
106 112 </if>
... ...