package com.dy.pipIrrGlobal.daoOp;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dy.pipIrrGlobal.pojoOp.OpeInspect;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-09-24 10:07
|
* @LastEditTime 2024-09-24 10:07
|
* @Description
|
*/
|
|
@Mapper
|
public interface OpeInspectMapper extends BaseMapper<OpeInspect> {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(OpeInspect record);
|
|
int insertSelective(OpeInspect record);
|
|
OpeInspect selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(OpeInspect record);
|
|
int updateByPrimaryKey(OpeInspect record);
|
}
|