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(); 
 | 
} 
 |