PlanManageMapper.java 758 B

1234567891011121314151617181920212223242526
  1. package com.huaxu.task.dao;
  2. import com.baomidou.mybatisplus.core.metadata.IPage;
  3. import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
  4. import com.huaxu.task.dto.PlanManageDto;
  5. import com.huaxu.task.entity.PlanManage;
  6. import org.apache.ibatis.annotations.Mapper;
  7. import org.apache.ibatis.annotations.Param;
  8. @Mapper
  9. public interface PlanManageMapper {
  10. int deleteByPrimaryKey(Integer id);
  11. int insertSelective(PlanManage record);
  12. PlanManage selectByPrimaryKey(Integer id);
  13. PlanManage selectByPlanId(String planId);
  14. int updateByPrimaryKeySelective(PlanManage record);
  15. int updateByPrimaryKey(PlanManage record);
  16. Page<PlanManageDto> findPage(IPage<PlanManageDto> page, @Param("plan") PlanManageDto planManageDto);
  17. }