Authored by Lixiaodi

bug修改

... ... @@ -154,7 +154,7 @@
and amount + #{amount,jdbcType=DECIMAL} >= 0
</if>
<if test="lockAmount != null" >
lock_amount = lock_amount + #{lockAmount,jdbcType=DECIMAL} &gt;= 0
and lock_amount = lock_amount + #{lockAmount,jdbcType=DECIMAL} &gt;= 0
</if>
and status=1
</update>
... ...
package com.yohoufo.order.model.request;
import com.yohoufo.dal.order.model.SellerWalletDetail;
import com.yohoufo.order.common.RefundCase;
import lombok.AllArgsConstructor;
import lombok.Data;
... ... @@ -30,4 +31,6 @@ public class PaymentRequest {
private String openid;
private RefundCase refundCase;
private SellerWalletDetail.Type refundType;
}
... ...