InvestigateMapper.java 936 B

12345678910111213141516171819202122232425262728
  1. package com.ruoyi.invest.mapper;
  2. import com.ruoyi.invest.domain.TProjectInvestigate;
  3. import com.ruoyi.invest.domain.vo.ProjectInvestigateVo;
  4. import org.apache.ibatis.annotations.Param;
  5. import java.util.List;
  6. /**
  7. * 项目池Mapper接口
  8. *
  9. * @author ruoyi
  10. * @date 2024-02-21
  11. */
  12. public interface InvestigateMapper {
  13. /*待办任务*/
  14. List<ProjectInvestigateVo> getMyTaskList(@Param("userId") String userId, @Param("projectInvestigate") TProjectInvestigate tProjectInvestigate);
  15. /*已办任务*/
  16. List<ProjectInvestigateVo> getMyDoneTaskList(@Param("userId") String userId, @Param("projectInvestigate")TProjectInvestigate tProjectInvestigate);
  17. /*我的单据*/
  18. List<ProjectInvestigateVo> getMyList(@Param("userId") String userId, @Param("projectInvestigate")TProjectInvestigate tProjectInvestigate);
  19. /*详情*/
  20. public TProjectInvestigate selectTProjectInvestigateByProcInstId(String ProcInstId);
  21. }