This commit is contained in:
墨大叔 2024-07-10 17:57:39 +08:00
parent f75febd2b4
commit a495de04fc
3 changed files with 2 additions and 2 deletions

View File

@ -267,7 +267,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<trim prefix="SET" suffixOverrides=",">
<include refid="updateColumns"/>
</trim>
where bill_id = #{billId}
where bill_id = #{data.billId}
</update>
<sql id="updateColumns">

View File

@ -107,6 +107,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<include refid="searchCondition"/>
and su.del_flag = '0'
</where>
order by su.create_time desc
</select>
<select id="selectSmUserByUserId" parameterType="Long" resultMap="SmUserResult">

View File

@ -165,7 +165,6 @@ public class SmTransactionBillController extends BaseController
return success();
}
// 订单退款
@PutMapping("/refund")
@PreAuthorize("@ss.hasPermi('system:bill:refund')")