liurunyu
2024-06-28 6a6d287641a28ad19dfa1c319fe7a9191ef9ad52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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);
}