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);
|
|
}
|