1234567891011121314151617181920212223242526 |
- package com.huaxu.task.dao;
- import com.baomidou.mybatisplus.core.metadata.IPage;
- import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
- import com.huaxu.task.dto.PlanManageDto;
- import com.huaxu.task.entity.PlanManage;
- import org.apache.ibatis.annotations.Mapper;
- import org.apache.ibatis.annotations.Param;
- @Mapper
- public interface PlanManageMapper {
- int deleteByPrimaryKey(Integer id);
- int insertSelective(PlanManage record);
- PlanManage selectByPrimaryKey(Integer id);
- PlanManage selectByPlanId(String planId);
- int updateByPrimaryKeySelective(PlanManage record);
- int updateByPrimaryKey(PlanManage record);
- Page<PlanManageDto> findPage(IPage<PlanManageDto> page, @Param("plan") PlanManageDto planManageDto);
- }
|