This commit is contained in:
张良(004796)
2024-03-08 14:15:26 +08:00
parent cfd8feb5eb
commit 01f5dcbb54
30 changed files with 431 additions and 22 deletions

View File

@@ -25,6 +25,17 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<result property="updateTime" column="update_time"/>
<result property="deleteFlag" column="delete_flag"/>
</resultMap>
<select id="pageApp" resultType="com.ruoyi.xq.dto.app.withdraw.WithdrawListAppVo">
select
t1.id, t1.user_id, t1.usercode, t1.order_no,
t1.withdraw_money,t1.real_withdraw_money, t1.withdraw_fees,t1.withdraw_fees_cate,
t1.pay, t1.audit_status, t1.audit_remark, t1.audit_time, t1.create_time
from xq_user_withdraw t1
where t1.user_id = #{query.userId}
<if test="query.auditStatus != null">
and t1.audit_status = #{query.auditStatus}
</if>
</select>
</mapper>