1234567891011121314151617181920212223 |
- <?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="cn.ubitech.ttc.dao.DemandRewardMapper">
- <select id="getDemandRewardListByStatus" resultType="cn.ubitech.ttc.entity.DemandReward" useCache="false">
- SELECT
- *
- FROM
- demand_reward dr
- WHERE 1=1
- AND dr.node = #{node}
- AND dr.restype = #{restype}
- <if test='demandstatus!=null'>
- AND dr.demandstatus IN
- <foreach collection="demandstatus" item="ids" index="index"
- open="(" close=")" separator=",">
- #{ids}
- </foreach>
- </if>
- ORDER BY
- dr.createtime DESC
- </select>
- </mapper>
|