充值可用店铺列表

This commit is contained in:
张松
2025-09-28 17:57:43 +08:00
parent c34a1d1f88
commit a12b87d47e
5 changed files with 57 additions and 6 deletions

View File

@@ -1,6 +1,7 @@
package com.czg.controller.user;
import com.czg.market.service.MkShopRechargeService;
import com.czg.market.vo.MkShopRechargeShopListVO;
import com.czg.market.vo.MkShopRechargeVO;
import com.czg.market.vo.RechargeListVO;
import com.czg.resp.CzgResult;
@@ -34,7 +35,16 @@ public class URechargeController {
}
/**
* 储值列表
* 可用店铺列表
* @param shopId 店铺id
*/
@GetMapping("/config/shopList")
public CzgResult<List<MkShopRechargeShopListVO>> shopList(@RequestParam Long shopId, @RequestParam(required = false) String shopName) {
return CzgResult.success(shopRechargeService.shopList(shopId, shopName));
}
/**
* 充值列表
*/
@GetMapping("/list")
public CzgResult<List<RechargeListVO>> getList() {