package com.dy.pipIrrGlobal.daoSe; 
 | 
  
 | 
import com.dy.pipIrrGlobal.pojoSe.SePaymentMethod; 
 | 
import org.apache.ibatis.annotations.Mapper; 
 | 
  
 | 
import java.util.List; 
 | 
  
 | 
/** 
 | 
 * @author ZhuBaoMin 
 | 
 * @date 2023/12/5 16:03 
 | 
 * @LastEditTime 2023/12/5 16:03 
 | 
 * @Description 
 | 
 */ 
 | 
  
 | 
@Mapper 
 | 
public interface SePaymentMethodMapper { 
 | 
    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(); 
 | 
} 
 |