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