| 1234567891011121314151617181920212223242526272829303132333435363738 |
- package com.chinaitop.depot.basic.mapper;
- import com.chinaitop.depot.basic.model.DRyxxsjyVO;
- import com.chinaitop.depot.basic.model.vo.*;
- import com.chinaitop.depot.basic.param.DRyxxsjyPageParam;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- import java.util.List;
- /**
- * @author qingsong.han
- * @description:
- * @create 2024-11-21 20:06
- */
- @Repository
- public interface DRyxxsjyMapper {
- List<DRyxxsjyVO> getPageList(DRyxxsjyPageParam pageParam);
- DRyxxsjyVO getById(@Param("rybh") String rybh, @Param("orgId") Integer orgId);
- List<EducationVO> getQuanById(String rybh);
- List<FeiEducationVO> getFeiById(String rybh);
- List<RotaterotateVO> getRotaterotateById(String rybh);
- List<SkillVO> getSkillListById(String rybh);
- List<ReportVO> getReportListById(String rybh);
- List<CertificatesVO> getCertificatesListById(String rybh);
- List<ZwlxbgjlVO> getZwlxbgjlListById(String sfzh);
- String getSptFileUrl(@Param("orgId") Integer orgId, @Param("sptFileUrl") String sptFileUrl);
- }
|