|
|
@ -8,6 +8,7 @@ |
|
|
<result column="creator_id" jdbcType="BIGINT" property="creatorId" /> |
|
|
<result column="creator_id" jdbcType="BIGINT" property="creatorId" /> |
|
|
<result column="order_id" jdbcType="VARCHAR" property="orderId" /> |
|
|
<result column="order_id" jdbcType="VARCHAR" property="orderId" /> |
|
|
<result column="amt" jdbcType="DECIMAL" property="amt" /> |
|
|
<result column="amt" jdbcType="DECIMAL" property="amt" /> |
|
|
|
|
|
<result column="fee" jdbcType="DECIMAL" property="fee" /> |
|
|
<result column="account_no" jdbcType="VARCHAR" property="accountNo" /> |
|
|
<result column="account_no" jdbcType="VARCHAR" property="accountNo" /> |
|
|
<result column="reason" jdbcType="VARCHAR" property="reason" /> |
|
|
<result column="reason" jdbcType="VARCHAR" property="reason" /> |
|
|
<result column="status" jdbcType="CHAR" property="status" /> |
|
|
<result column="status" jdbcType="CHAR" property="status" /> |
|
|
@ -19,12 +20,12 @@ |
|
|
</resultMap> |
|
|
</resultMap> |
|
|
<sql id="Base_Column_List"> |
|
|
<sql id="Base_Column_List"> |
|
|
<!--@mbg.generated--> |
|
|
<!--@mbg.generated--> |
|
|
id, creator_id, amt, account_no, `status`, create_time, update_time, sort,is_show,order_id,channel,reason |
|
|
id, creator_id, amt,fee, account_no, `status`, create_time, update_time, sort,is_show,order_id,channel,reason |
|
|
</sql> |
|
|
</sql> |
|
|
|
|
|
|
|
|
<select id="queryFrontList" resultType="com.bnyer.img.vo.WithdrawLogVo"> |
|
|
<select id="queryFrontList" resultType="com.bnyer.img.vo.WithdrawLogVo"> |
|
|
select |
|
|
select |
|
|
id, creator_id, amt, account_no,status,create_time,update_time,order_id,channel,reason |
|
|
id, creator_id, amt,fee,account_no,status,create_time,update_time,order_id,channel,reason |
|
|
from img_withdraw_log |
|
|
from img_withdraw_log |
|
|
where is_show = '1' and creator_id = #{creatorId} |
|
|
where is_show = '1' and creator_id = #{creatorId} |
|
|
order by create_time desc |
|
|
order by create_time desc |
|
|
@ -32,7 +33,7 @@ |
|
|
|
|
|
|
|
|
<select id="queryFrontDetails" resultType="com.bnyer.img.vo.WithdrawLogVo"> |
|
|
<select id="queryFrontDetails" resultType="com.bnyer.img.vo.WithdrawLogVo"> |
|
|
select |
|
|
select |
|
|
id, creator_id, amt, account_no,status,create_time,update_time,order_id,channel,reason |
|
|
id, creator_id, amt,fee,account_no,status,create_time,update_time,order_id,channel,reason |
|
|
from img_withdraw_log |
|
|
from img_withdraw_log |
|
|
where is_show = '1' and order_id = #{orderId} |
|
|
where is_show = '1' and order_id = #{orderId} |
|
|
</select> |
|
|
</select> |
|
|
|