PmsPhaseTaskMapper.java 849 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. package com.goldenwater.slgc.mapper.pms;
  2. import com.goldenwater.slgc.entity.pms.PmsPhaseTask;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import java.util.List;
  5. @Mapper
  6. public interface PmsPhaseTaskMapper {
  7. /**
  8. * 查询阶段任务列表
  9. */
  10. List<PmsPhaseTask> selectList(PmsPhaseTask phaseTask);
  11. /**
  12. * 根据主键查询阶段任务
  13. */
  14. PmsPhaseTask selectById(Long id);
  15. /**
  16. * 新增阶段任务
  17. */
  18. int insert(PmsPhaseTask phaseTask);
  19. /**
  20. * 修改阶段任务
  21. */
  22. int update(PmsPhaseTask phaseTask);
  23. /**
  24. * 删除阶段任务
  25. */
  26. int deleteById(Long id);
  27. /**
  28. * 批量删除阶段任务
  29. */
  30. int deleteByIds(Long[] ids);
  31. /**
  32. * 根据阶段ID查询阶段任务列表
  33. */
  34. List<PmsPhaseTask> selectByPhaseId(Long phaseId);
  35. }