package com.dy.pipIrrTerminal.paymentmethod;
|
|
import com.dy.common.webUtil.QueryResultVo;
|
import com.dy.pipIrrGlobal.daoSe.SePaymentMethodMapper;
|
import com.dy.pipIrrGlobal.pojoSe.SePaymentMethod;
|
import com.dy.pipIrrGlobal.voSe.VoPaymentMethod;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.stereotype.Service;
|
|
import java.util.List;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2025-06-25 11:09
|
* @LastEditTime 2025-06-25 11:09
|
* @Description
|
*/
|
|
@Slf4j
|
@Service
|
public class PaymentMethodSv {
|
@Autowired
|
private SePaymentMethodMapper sePaymentMethodMapper;
|
|
/**
|
* 充值机用获取支付方式
|
* @return
|
*/
|
public List<VoPaymentMethod> getPayMethods() {
|
return sePaymentMethodMapper.getPayMethods();
|
}
|
}
|