zhubaomin
6 天以前 e444da6e52f55d7f73cc316a8172345456435212
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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();
    }
}