Fancy
2025-01-14 057d4df78bcc5b34ca7c6897918946c4a9e65d18
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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<PrBillOfMaterial> records);
 
    void deleteByNodeId(@Param("nodeIds")List<Long> nodeIds);
}