package com.dy.pipIrrGlobal.daoRm;
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.dy.pipIrrGlobal.pojoRm.RmOpenCloseHistory;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2024-06-20 10:34
|
* @LastEditTime 2024-06-20 10:34
|
* @Description
|
*/
|
|
@Mapper
|
public interface RmOpenCloseHistoryMapper extends BaseMapper<RmOpenCloseHistory> {
|
int deleteByPrimaryKey(Long id);
|
|
int insert(RmOpenCloseHistory record);
|
|
int insertSelective(RmOpenCloseHistory record);
|
|
RmOpenCloseHistory selectByPrimaryKey(Long id);
|
|
int updateByPrimaryKeySelective(RmOpenCloseHistory record);
|
|
int updateByPrimaryKey(RmOpenCloseHistory record);
|
}
|