package com.gx.obe.server.management.evaluation.dao;

import java.util.List;

import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;

import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gx.obe.server.management.evaluation.entity.BidRegulations;

/** 
 * @Description: 
 * @author mazc 
 */
 @Mapper
public interface BidRegulationsMapper extends BaseMapper<BidRegulations> {
	 
	 Integer ByTenderIdToSize(@Param("tenderId") String tenderId) ;
	 
	 
	 Integer insertBatch(@Param("list")List<BidRegulations> list);
	 

 }