liurunyu
2024-06-28 6a6d287641a28ad19dfa1c319fe7a9191ef9ad52
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.pipIrrGlobal.daoSe;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.dy.pipIrrGlobal.pojoSe.SePaymentMethod;
 
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();
}