|  |  |  | 
|---|
|  |  |  | package com.dy.pipIrrGlobal.daoSe; | 
|---|
|  |  |  |  | 
|---|
|  |  |  | import com.baomidou.mybatisplus.core.mapper.BaseMapper; | 
|---|
|  |  |  | 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 | 
|---|
|  |  |  | * @author :WuZeYu | 
|---|
|  |  |  | * @Date :2024/6/27  15:00 | 
|---|
|  |  |  | * @LastEditTime :2024/6/27  15:00 | 
|---|
|  |  |  | * @Description | 
|---|
|  |  |  | */ | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @Mapper | 
|---|
|  |  |  | public interface SePaymentMethodMapper { | 
|---|
|  |  |  | public interface SePaymentMethodMapper extends BaseMapper<SePaymentMethod> { | 
|---|
|  |  |  | int deleteByPrimaryKey(Long id); | 
|---|
|  |  |  |  | 
|---|
|  |  |  | int insert(SePaymentMethod record); | 
|---|
|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * 获取全部未删除付款方式 | 
|---|
|  |  |  | * | 
|---|
|  |  |  | * @return 未删除付款方式 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | List<SePaymentMethod> getPaymentMethods(); | 
|---|