Fancy
2024-08-15 4574296e4453f0cbb75a5fdb8bb39fa43c87297c
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
package com.dy.pmsGlobal.daoPr;
 
import com.dy.pmsGlobal.pojoPr.PrWorkingInstruction;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
 
/**
* @author 小明
* @description 针对表【pr_working_instruction(作业指导书关联表)】的数据库操作Mapper
* @createDate 2024-05-25 09:22:03
* @Entity com.dy.pmsGlobal.pojoPr.PrWorkingInstruction
*/
@Mapper
public interface PrWorkingInstructionMapper {
 
    int deleteByPrimaryKey(Long id);
 
    int insertSelective(PrWorkingInstruction record);
    int insertMany(List<PrWorkingInstruction> records);
 
    PrWorkingInstruction selectByPrimaryKey(Long id);
 
    int updateByPrimaryKeySelective(PrWorkingInstruction record);
 
    int deleteByNodeId(List<Long> ids);
 
}