package com.rzyc.mapper; import com.rzyc.model.InPost; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import org.springframework.stereotype.Repository; import java.util.List; /** *

* 行业公共岗位表 Mapper 接口 *

* * @author * @since 2023-01-03 */ @Repository public interface InPostMapper extends BaseMapper { /** * 导入list * @param list * @return int * */ int insertList(@Param("list") Listlist); /** * 查询公共岗位 * @param industryId * @return list * */ ListselectByIndustryId(String industryId); }