临时提交

This commit is contained in:
墨大叔 2024-07-30 15:08:05 +08:00
parent 6696ade7d3
commit 65f5fc5234
2 changed files with 2 additions and 2 deletions

View File

@ -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">

View File

@ -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());