临时提交
This commit is contained in:
parent
6696ade7d3
commit
65f5fc5234
|
@ -35,7 +35,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
|
|||
<if test="query.userType != null and query.userType != ''"> and sr.user_type = #{query.userType}</if>
|
||||
<if test="query.userId != null "> and sr.user_id = #{query.userId}</if>
|
||||
<if test="query.userName != null and query.userName != ''"> and sr.user_name like concat('%', #{query.userName}, '%')</if>
|
||||
<if test="query.billMchId != null "> and smb.user_id = #{query.billMchId}</if>
|
||||
<if test="query.billMchId != null "> and smb.mch_id = #{query.billMchId}</if>
|
||||
</sql>
|
||||
|
||||
<select id="selectRefundList" parameterType="Refund" resultMap="RefundResult">
|
||||
|
|
|
@ -41,7 +41,7 @@ public class RefundConverterImpl implements RefundConverter {
|
|||
refund.setBillId(dto.getBillId());
|
||||
refund.setAmount(dto.getRefundAmount());
|
||||
refund.setStatus(RefundStatus.REFUNDING.getStatus());
|
||||
refund.setReason(String.format("套餐订单%s退款", bill.getBillNo()));
|
||||
refund.setReason(String.format("充值订单%s退款", bill.getBillNo()));
|
||||
refund.setMchAmount(refundMchAmount);
|
||||
refund.setServiceAmount(refundServiceAmount);
|
||||
refund.setUserType(dto.getUserType());
|
||||
|
|
Loading…
Reference in New Issue
Block a user