| | |
| | | |
| | | import com.baomidou.mybatisplus.core.mapper.BaseMapper; |
| | | import com.dy.pipIrrGlobal.pojoSe.SePaymentMethod; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.mapstruct.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 14:47 |
| | | * @LastEditTime :2024/6/27 14:47 |
| | | * @Description |
| | | */ |
| | | |
| | | @Mapper |
| | | public interface SePaymentMethodMapper extends BaseMapper<SePaymentMethod> { |
| | | int deleteByPrimaryKey(Long id); |
| | |
| | | |
| | | /** |
| | | * 获取全部未删除付款方式 |
| | | * |
| | | * @return 未删除付款方式 |
| | | */ |
| | | List<SePaymentMethod> getPaymentMethods(); |