package com.dy.pipIrrGlobal.daoSe; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.dy.pipIrrGlobal.pojoSe.SePaymentMethod; import org.mapstruct.Mapper; import java.util.List; /** * @author :WuZeYu * @Date :2024/6/27 14:47 * @LastEditTime :2024/6/27 14:47 * @Description */ @Mapper public interface SePaymentMethodMapper extends BaseMapper { 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 getPaymentMethods(); }