liurunyu
4 天以前 fa40a38ac0c25ada4bf554e742862fb2200c8a78
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
34
35
36
37
38
39
40
package com.dy.pipIrrGlobal.daoSe;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoSe.SePaymentMethod;
import com.dy.pipIrrGlobal.voSe.VoPaymentMethod;
 
import java.util.List;
 
/**
 * @author :WuZeYu
 * @Date :2024/6/27  15:00
 * @LastEditTime :2024/6/27  15:00
 * @Description
 */
public interface SePaymentMethodMapper extends BaseMapper<SePaymentMethod> {
    int deleteByPrimaryKey(Long id);
 
    int insert(SePaymentMethod record);
 
    int insertSelective(SePaymentMethod record);
 
    SePaymentMethod selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(SePaymentMethod record);
 
    int updateByPrimaryKey(SePaymentMethod record);
 
    /**
     * 获取全部未删除付款方式
     *
     * @return 未删除付款方式
     */
    List<SePaymentMethod> getPaymentMethods();
 
    /**
     * 充值机用获取支付方式
     * @return
     */
    List<VoPaymentMethod> getPayMethods();
}