Commit 8c3026c9 by ddx

d

parent 85bb684a
......@@ -34,4 +34,7 @@ public class TokenReportReq extends SafeModel implements MqMessage {
private String taxno;
private String requestType;
private String reqDateStart;
private String reqDateEnd;
}
......@@ -544,6 +544,12 @@
<if test="taxno != null and taxno !=''">
and taxno = #{taxno}
</if>
<if test="reqDateStart != null and reqDateStart != ''">
<![CDATA[and req_date >= #{reqDateStart}]]>
</if>
<if test="reqDateEnd != null and reqDateEnd != ''">
<![CDATA[and req_date <= #{reqDateEnd}]]>
</if>
order by res_date desc
</select>
</mapper>
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment