1234567891011121314 |
- package com.hz.employmentsite.mapper.cquery;
- import com.hz.employmentsite.vo.jobUserManager.JobUserVo;
- import org.apache.ibatis.annotations.Param;
- import java.util.List;
- public interface JobUserCQuery {
- List<JobUserVo> selectJobUserList(@Param("jobUserIDList") String jobUserIDList, @Param("name") String name,
- @Param("siteId") String siteId, @Param("jobStatus") String jobStatus,
- @Param("sexId") Integer sexId, @Param("educationTypeId") Integer educationTypeId,
- @Param("emphasisTypeId") Integer emphasisTypeId, @Param("createUserId") String createUserId,
- @Param("workTime") String workTime);
- }
|