PlanManageMapper.java 352 B

12345678910111213141516
  1. package com.huaxu.task.dao;
  2. import com.huaxu.task.entity.PlanManage;
  3. import org.apache.ibatis.annotations.Mapper;
  4. @Mapper
  5. public interface PlanManageMapper {
  6. int deleteByPrimaryKey(Integer id);
  7. int insertSelective(PlanManage record);
  8. PlanManage selectByPrimaryKey(Integer id);
  9. int updateByPrimaryKeySelective(PlanManage record);
  10. }