123456789101112 |
- 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<JobUserServiceVo> getList(@Param("jobUserID") String jobUserID, @Param("serviceID") String serviceID);
- List<JobUserServiceVo> jobUserMapGetService(@Param("jobUserIDList") String jobUserIDList);
- }
|