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 getPageList(DRyxxsjyPageParam pageParam); DRyxxsjyVO getById(@Param("rybh") String rybh, @Param("orgId") Integer orgId); List getQuanById(String rybh); List getFeiById(String rybh); List getRotaterotateById(String rybh); List getSkillListById(String rybh); List getReportListById(String rybh); List getCertificatesListById(String rybh); List getZwlxbgjlListById(String sfzh); String getSptFileUrl(@Param("orgId") Integer orgId, @Param("sptFileUrl") String sptFileUrl); }