liujie
2023-09-25 d41358fce9a436d81b9341d06fc1d8f3ddff92ff
cloud-server-account/src/main/resources/mapper/RechargeRecordsMapper.xml
@@ -6,14 +6,14 @@
    <select id="rechargeList" resultType="com.dsh.account.model.vo.RechargeRecordsVO">
        select t1.id as id,t1.appUserId,t1.payTime as `time`,t1.amount as amount,
        t1.playPaiCoins as playPaiCoins,CONCAT(t2.province,t2.city) as provinceAndCity,
        t2.`name` as `name`,t2.phone as phone,t2.isVip as `type` from t_recharge_records t1
        t2.`name` as `name`,t2.phone as phone,t2.isVip as `type` from t_recharge_records3 t1
        left join t_app_user t2 on t2.id = t1.appUserId
        <where>
            <if test="query.city!=null and query.city!= ''">
                and t1.city = #{query.city}
                and t2.city = #{query.city}
            </if>
            <if test="query.province!=null and query.province!= ''">
                and t1.province = #{query.province}
                and t2.province = #{query.province}
            </if>
            <if test="query.name!=null and query.name!= ''">
                AND t1.name LIKE concat('%',#{query.name},'%')
@@ -25,7 +25,7 @@
                and t2.isVip = #{query.type}
            </if>
            <if test="sTime !=null and sTime!= '' and eTime !=null and eTime!= ''">
                and t1.payTime between #{sTime} and #{eTime}
                and t1.insertTime between #{sTime} and #{eTime}
            </if>
            and t1.state != 3
        </where>