JobUserCQuery.java 754 B

1234567891011121314
  1. package com.hz.employmentsite.mapper.cquery;
  2. import com.hz.employmentsite.vo.jobUserManager.JobUserVo;
  3. import org.apache.ibatis.annotations.Param;
  4. import java.util.List;
  5. public interface JobUserCQuery {
  6. List<JobUserVo> selectJobUserList(@Param("jobUserIDList") String jobUserIDList, @Param("name") String name,
  7. @Param("siteId") String siteId, @Param("jobStatus") String jobStatus,
  8. @Param("sexId") Integer sexId, @Param("educationTypeId") Integer educationTypeId,
  9. @Param("emphasisTypeId") Integer emphasisTypeId, @Param("createUserId") String createUserId,
  10. @Param("workTime") String workTime);
  11. }