DRyxxsjyMapper.java 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. package com.chinaitop.depot.basic.mapper;
  2. import com.chinaitop.depot.basic.model.DRyxxsjyVO;
  3. import com.chinaitop.depot.basic.model.vo.*;
  4. import com.chinaitop.depot.basic.param.DRyxxsjyPageParam;
  5. import org.apache.ibatis.annotations.Param;
  6. import org.springframework.stereotype.Repository;
  7. import java.util.List;
  8. /**
  9. * @author qingsong.han
  10. * @description:
  11. * @create 2024-11-21 20:06
  12. */
  13. @Repository
  14. public interface DRyxxsjyMapper {
  15. List<DRyxxsjyVO> getPageList(DRyxxsjyPageParam pageParam);
  16. DRyxxsjyVO getById(@Param("rybh") String rybh, @Param("orgId") Integer orgId);
  17. List<EducationVO> getQuanById(String rybh);
  18. List<FeiEducationVO> getFeiById(String rybh);
  19. List<RotaterotateVO> getRotaterotateById(String rybh);
  20. List<SkillVO> getSkillListById(String rybh);
  21. List<ReportVO> getReportListById(String rybh);
  22. List<CertificatesVO> getCertificatesListById(String rybh);
  23. List<ZwlxbgjlVO> getZwlxbgjlListById(String sfzh);
  24. String getSptFileUrl(@Param("orgId") Integer orgId, @Param("sptFileUrl") String sptFileUrl);
  25. }