Authored by LUOXC

Merge branch 'hotfix_0407_skupnotexist2' into gray

... ... @@ -12,7 +12,7 @@ public class SellerWalletCompensate {
private Integer uid;
BigDecimal earnestMoney;
List<Integer> skups;
String skups;
BigDecimal availableAmount;
BigDecimal lockAmount;
}
... ...
... ... @@ -122,7 +122,7 @@ public class OrderHelpController {
storedSellerService.compensate(uids);
return new ApiResponse.ApiResponseBuilder()
.code(200)
.message("降级成功")
.message("补偿成功")
.build();
}
... ...
... ... @@ -473,7 +473,7 @@ public class StoreSellerServiceImpl implements IStoredSellerService {
.earnestMoney(earnestMoney)
.type(SellerWalletDetail.Type.PUBLISH.getValue()).build();
merchantOrderPaymentService.useEarnest(s.getUid(), earnestMoney, moai);
scriptLogger.info("[{}] compensate lock money {} success", s.getUid(), s);
scriptLogger.info("[{}] compensate lock money {}, {} success", s.getUid(), s, compensate);
}
... ...