package com.dy.pipIrrGlobal.daoSe;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dy.pipIrrGlobal.pojoSe.SeIssueReport;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-10-29 16:53
|
* @LastEditTime 2024-10-29 16:53
|
* @Description
|
*/
|
|
@Mapper
|
public interface SeIssueReportMapper extends BaseMapper<SeIssueReport> {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(SeIssueReport record);
|
|
int insertSelective(SeIssueReport record);
|
|
SeIssueReport selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(SeIssueReport record);
|
|
int updateByPrimaryKey(SeIssueReport record);
|
}
|