<?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="com.ruoyi.order.mapper.TChargingBillMapper">
|
|
|
<select id="chargingBillList" resultType="com.ruoyi.order.api.vo.ChargingBillListVO">
|
select t1.* from t_charging_bill t1
|
where 1=1
|
<if test="req.type != null ">
|
and t1.type = #{req.type}
|
</if>
|
<if test="req.state != null ">
|
and t1.status = #{req.state}
|
</if>
|
<if test="startTime1 != null and startTime1!=''">
|
and (t1.bill_time between #{startTime1} and #{startTime2})
|
</if>
|
<if test="req.uid != null and req.uid!=''">
|
and t1.id = #{req.uid}
|
</if>
|
and t1.billType = 1
|
and t1.del_flag = 0
|
</select>
|
<select id="chargingBillList1" resultType="com.ruoyi.order.api.vo.ChargingBillListVO">
|
select t1.* from t_charging_bill t1
|
where 1=1
|
<if test="req.type != null ">
|
and t1.type = #{req.type}
|
</if>
|
<if test="req.state != null ">
|
and t1.status = #{req.state}
|
</if>
|
<if test="startTime1 != null and startTime1!=''">
|
and (t1.bill_time between #{startTime1} and #{startTime2}
|
</if>
|
<if test="req.uid != null and req.uid!=''">
|
and t1.id = #{req.uid}
|
</if>
|
and t1.billType = 2
|
and t1.del_flag = 0
|
</select>
|
</mapper>
|