ganzi-api/inventory-dao/src/main/java/com/rzyc/mapper/InPostMapper.java

35 lines
675 B
Java

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;
/**
* <p>
* 行业公共岗位表 Mapper 接口
* </p>
*
* @author
* @since 2023-01-03
*/
@Repository
public interface InPostMapper extends BaseMapper<InPost> {
/**
* 导入list
* @param list
* @return int
* */
int insertList(@Param("list") List<InPost>list);
/**
* 查询公共岗位
* @param industryId
* @return list
* */
List<InPost>selectByIndustryId(String industryId);
}