init
This commit is contained in:
@@ -4,23 +4,23 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.xq.mapper.UserAuthAuditMapper">
|
||||
|
||||
<resultMap type="com.ruoyi.xq.domain.UserAuthAudit" id="UserAuthAuditResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="userId" column="user_id"/>
|
||||
<result property="usercode" column="usercode"/>
|
||||
<result property="authType" column="auth_type"/>
|
||||
<result property="authRemark" column="auth_remark"/>
|
||||
<result property="authPic" column="auth_pic"/>
|
||||
<result property="auitOther" column="auit_other"/>
|
||||
<result property="auditStatus" column="audit_status"/>
|
||||
<result property="auditRemark" column="audit_remark"/>
|
||||
<result property="auditTime" column="audit_time"/>
|
||||
<result property="auditOpId" column="audit_op_id"/>
|
||||
<result property="auditOpName" column="audit_op_name"/>
|
||||
<result property="auditIp" column="audit_ip"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<result property="updateTime" column="update_time"/>
|
||||
</resultMap>
|
||||
<select id="pageAdmin" resultType="com.ruoyi.xq.dto.admin.userauth.UserAuthAuditAdminVo">
|
||||
select t1.*, t2.nickname, t2.mobile,t2.avatar
|
||||
from xq_user_auth_audit t1
|
||||
left join xq_user t2 on t1.user_id = t2.id
|
||||
<where>
|
||||
<if test="bo.usercode != null and bo.usercode != ''">
|
||||
and t1.usercode = #{bo.usercode}
|
||||
</if>
|
||||
<if test="bo.nickname != null and bo.nickname != ''">
|
||||
and t2.nickname like concat('%',#{bo.nickname},'%')
|
||||
</if>
|
||||
<if test="bo.mobile != null and bo.mobile != ''">
|
||||
and t2.mobile = #{bo.mobile}
|
||||
</if>
|
||||
</where>
|
||||
order by t1.create_time desc
|
||||
</select>
|
||||
|
||||
|
||||
</mapper>
|
||||
|
||||
@@ -4,27 +4,6 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.ruoyi.xq.mapper.UserWithdrawMapper">
|
||||
|
||||
<resultMap type="com.ruoyi.xq.domain.UserWithdraw" id="UserWithdrawResult">
|
||||
<result property="id" column="id"/>
|
||||
<result property="userId" column="user_id"/>
|
||||
<result property="usercode" column="usercode"/>
|
||||
<result property="traceId" column="trace_id"/>
|
||||
<result property="orderNo" column="order_no"/>
|
||||
<result property="withdrawMoney" column="withdraw_money"/>
|
||||
<result property="realWithdrawMoney" column="real_withdraw_money"/>
|
||||
<result property="withdrawFees" column="withdraw_fees"/>
|
||||
<result property="withdrawFeesCate" column="withdraw_fees_cate"/>
|
||||
<result property="pay" column="pay"/>
|
||||
<result property="auditStatus" column="audit_status"/>
|
||||
<result property="auditRemark" column="audit_remark"/>
|
||||
<result property="auditTime" column="audit_time"/>
|
||||
<result property="auditOpId" column="audit_op_id"/>
|
||||
<result property="auditOpName" column="audit_op_name"/>
|
||||
<result property="auditIp" column="audit_ip"/>
|
||||
<result property="createTime" column="create_time"/>
|
||||
<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,
|
||||
@@ -36,6 +15,23 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
||||
and t1.audit_status = #{query.auditStatus}
|
||||
</if>
|
||||
</select>
|
||||
<select id="pageAdmin" resultType="com.ruoyi.xq.dto.admin.withdraw.UserWithdrawAdminVo">
|
||||
select t1.*, t2.nickname, t2.mobile,t2.avatar
|
||||
from xq_user_withdraw t1
|
||||
left join xq_user t2 on t1.user_id = t2.id
|
||||
<where>
|
||||
<if test="bo.usercode != null and bo.usercode != ''">
|
||||
and t1.usercode = #{bo.usercode}
|
||||
</if>
|
||||
<if test="bo.nickname != null and bo.nickname != ''">
|
||||
and t2.nickname like concat('%',#{bo.nickname},'%')
|
||||
</if>
|
||||
<if test="bo.mobile != null and bo.mobile != ''">
|
||||
and t2.mobile = #{bo.mobile}
|
||||
</if>
|
||||
</where>
|
||||
order by create_time desc
|
||||
</select>
|
||||
|
||||
|
||||
</mapper>
|
||||
|
||||
Reference in New Issue
Block a user