parent
d51a174b7e
commit
be7727061d
@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
|
||||
<mapper namespace="au.com.royalpay.payment.manage.mappers.preapply.SysClientPreMapperMapper">
|
||||
<select id="query" resultType="com.alibaba.fastjson.JSONObject">
|
||||
select * from sys_client_pre_apply
|
||||
<where>
|
||||
<if test="#{begin_time}!=null">
|
||||
and create_time >#{begin_time}
|
||||
</if>
|
||||
<if test="#{end_time}!=null">
|
||||
and create_time <#{end_time}
|
||||
</if>
|
||||
</where>
|
||||
</select>
|
||||
</mapper>
|
Loading…
Reference in new issue