|
|
@@ -137,7 +137,6 @@ public class PtBagController extends BaseController {
|
|
|
@SaCheckPermission("payment:ptBag:edit")
|
|
|
@Log(title = "账户钱包", businessType = BusinessType.UPDATE)
|
|
|
@RepeatSubmit()
|
|
|
- @SyncDataToLocal(eventType = ptCard_CHARGE_EDIT, sender = CARD_CENTER_SENDER)
|
|
|
@PostMapping("/recharge")
|
|
|
public R<PurseInOutBo> recharge(@Validated(EditGroup.class) @RequestBody PurseInOutBo bo) {
|
|
|
return payOrderBusiness.recharge(bo);
|
|
|
@@ -149,7 +148,6 @@ public class PtBagController extends BaseController {
|
|
|
@SaCheckPermission("payment:ptBag:edit")
|
|
|
@Log(title = "账户钱包", businessType = BusinessType.UPDATE)
|
|
|
@RepeatSubmit()
|
|
|
- @SyncDataToLocal(eventType = ptCard_refund_EDIT, sender = CARD_CENTER_SENDER)
|
|
|
@PostMapping("/refund")
|
|
|
public R<PurseInOutBo> refund(@Validated(EditGroup.class) @RequestBody PurseInOutBo bo) {
|
|
|
return payOrderBusiness.refund(bo);
|
|
|
@@ -161,7 +159,6 @@ public class PtBagController extends BaseController {
|
|
|
@SaCheckPermission("cardOperation:ptCard:edit")
|
|
|
@Log(title = "批量账户充值", businessType = BusinessType.UPDATE)
|
|
|
@RepeatSubmit()
|
|
|
- @SyncDataToLocal(eventType = ptCard_multicharge_EDIT, sender = CARD_CENTER_SENDER)
|
|
|
@PostMapping("/recharge/{userIds}")
|
|
|
public R<java.lang.String> batchRecharge(@Validated(EditGroup.class) @RequestBody PurseInOutBo bo, @PathVariable Long[] userIds) {
|
|
|
// TODO 2024-10-30 09:49:36 luoyibo 这里最好是提前处理下工作站信息
|
|
|
@@ -196,7 +193,6 @@ public class PtBagController extends BaseController {
|
|
|
@SaCheckPermission("cardOperation:ptCard:edit")
|
|
|
@Log(title = "账户批量退款", businessType = BusinessType.UPDATE)
|
|
|
@RepeatSubmit()
|
|
|
- @SyncDataToLocal(eventType = ptCard_multirefund_EDIT, sender = CARD_CENTER_SENDER)
|
|
|
@PostMapping("/refund/{userIds}")
|
|
|
public R<Void> batchRefund(@Validated(EditGroup.class) @RequestBody PurseInOutBo bo, @PathVariable Long[] userIds) {
|
|
|
List<java.lang.String> resultList = new ArrayList<>();
|
|
|
@@ -230,7 +226,6 @@ public class PtBagController extends BaseController {
|
|
|
@SaCheckPermission("cardOperation:ptCard:edit")
|
|
|
@Log(title = "账户批量设置余额", businessType = BusinessType.UPDATE)
|
|
|
@RepeatSubmit()
|
|
|
- @SyncDataToLocal(eventType = ptCard_multiSet_EDIT, sender = CARD_CENTER_SENDER)
|
|
|
@PostMapping("/recover/{userIds}")
|
|
|
public R<Void> batchRecover(@Validated(EditGroup.class) @RequestBody PtBagBo bo, @PathVariable Long[] userIds) {
|
|
|
bo.setUseType(SystemUseTypeEnum.CONSUME.code().toString());
|
|
|
@@ -249,7 +244,6 @@ public class PtBagController extends BaseController {
|
|
|
@SaCheckPermission("payment:ptBag:edit")
|
|
|
@Log(title = "账户钱包", businessType = BusinessType.UPDATE)
|
|
|
@RepeatSubmit()
|
|
|
- @SyncDataToLocal(eventType = ptCard_supply_EDIT, sender = CARD_CENTER_SENDER)
|
|
|
@PostMapping("/err-fill")
|
|
|
public R<PtBagVo> errFill(@Validated(EditGroup.class) @RequestBody ConsumptionBo bo) {
|
|
|
bo.setUseType(SystemUseTypeEnum.CONSUME.code().toString());
|