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 findPage(IPage page, @Param("plan") PlanManageDto planManageDto); }