liuxm
2024-05-28 3a24dda899fcde40e2edb90c319eb5644805a639
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
27
28
29
30
package com.dy.pmsGlobal.daoPr;
 
import com.dy.pmsGlobal.pojoPr.PrProductionNode;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
* @author 小明
* @description 针对表【pr_production_node(生产节点表)】的数据库操作Mapper
* @createDate 2024-05-25 09:22:03
* @Entity com.dy.pmsGlobal.pojoPr.PrProductionNode
*/
@Mapper
public interface PrProductionNodeMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insertSelective(PrProductionNode record);
 
    int insertMany(List<PrProductionNode> nodes);
 
    PrProductionNode selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrProductionNode record);
 
    List<PrProductionNode> selectByProcess(Long processId);
 
    void deleteByProcessId(Long id);
}