package com.hz.employmentsite.mapper.cquery; import com.hz.employmentsite.vo.jobUserManager.JobUserServiceVo; import org.apache.ibatis.annotations.Param; import java.util.List; public interface JobUserServiceCQuery { List getList(@Param("jobUserID") String jobUserID, @Param("serviceID") String serviceID); List jobUserMapGetService(@Param("jobUserIDList") String jobUserIDList); }