package com.dy.pmsGlobal.daoPr; import com.dy.pmsGlobal.pojoPr.PrBillOfMaterial; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface PrBillOfMaterialMapper { int deleteByPrimaryKey(Long id); int insert(PrBillOfMaterial record); int insertSelective(PrBillOfMaterial record); PrBillOfMaterial selectByPrimaryKey(Long id); int updateByPrimaryKeySelective(PrBillOfMaterial record); int updateByPrimaryKey(PrBillOfMaterial record); int insertMany(List records); void deleteByNodeId(@Param("nodeIds")List nodeIds); }