package com.bwie.mapper; import com.bwie.common.domain.Recruitment; import com.bwie.common.domain.request.RecruitmentListReq; import com.bwie.common.domain.response.DictionaryResp; import com.bwie.common.domain.response.RecruitmentListResp; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface RecruitmentMapper { List findList(RecruitmentListReq req); List selectTimeGtTen(); void updStatus(@Param("recruitments") List recruitments); List findAll(); int count(Integer firmId); List latest(); void updNumber(Integer recruitmentId); }