|
|
@@ -55,6 +55,13 @@ public class PtBagController extends BaseController {
|
|
|
private final PaymentsStrategyContent paymentsStrategyContent;
|
|
|
private final ErrFillBusiness errFillBusiness;
|
|
|
|
|
|
+ //根据userId查询账户余额
|
|
|
+ @SaCheckPermission("payment:ptBag:query")
|
|
|
+ @GetMapping("/selectAccountBalanceByIds")
|
|
|
+ public R<String> selectAccountBalanceByIds(@RequestParam("userIds") String userIds) {
|
|
|
+ return R.ok(ptBagService.selectAccountBalanceByIds(userIds));
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 查询账户钱包列表
|
|
|
*/
|