package cn.iocoder.yudao.module.pay.controller.app.channel;
|
|
import cn.iocoder.yudao.framework.common.pojo.CommonResult;
|
import cn.iocoder.yudao.module.pay.dal.dataobject.channel.PayChannelDO;
|
import cn.iocoder.yudao.module.pay.service.channel.PayChannelService;
|
import io.swagger.v3.oas.annotations.Operation;
|
import io.swagger.v3.oas.annotations.Parameter;
|
import io.swagger.v3.oas.annotations.tags.Tag;
|
import jakarta.annotation.Resource;
|
import org.springframework.validation.annotation.Validated;
|
import org.springframework.web.bind.annotation.GetMapping;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RequestParam;
|
import org.springframework.web.bind.annotation.RestController;
|
|
import java.util.List;
|
import java.util.Set;
|
|
import static cn.iocoder.yudao.framework.common.pojo.CommonResult.success;
|
import static cn.iocoder.yudao.framework.common.util.collection.CollectionUtils.convertSet;
|
|
@Tag(name = "用户 App - 支付渠道")
|
@RestController
|
@RequestMapping("/pay/channel")
|
@Validated
|
public class AppPayChannelController {
|
|
@Resource
|
private PayChannelService channelService;
|
|
@GetMapping("/get-enable-code-list")
|
@Operation(summary = "获得指定应用的开启的支付渠道编码列表")
|
@Parameter(name = "appId", description = "应用编号", required = true, example = "1")
|
public CommonResult<Set<String>> getEnableChannelCodeList(@RequestParam("appId") Long appId) {
|
List<PayChannelDO> channels = channelService.getEnableChannelList(appId);
|
return success(convertSet(channels, PayChannelDO::getCode));
|
}
|
|
}
|