‘liusuyi’
2023-09-19 c9768346fc8bc1cc6326e06125deaf57ff423eaf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.ard.alarm.digitization.mapper;
 
import com.ard.alarm.digitization.model.DataBridge;
import org.apache.ibatis.annotations.Mapper;
 
import java.util.List;
@Mapper
public interface DataBridgeMapper {
 
    List<DataBridge> selectDatabridgeList(DataBridge row);
 
    int deleteByPrimaryKey(String id);
 
    int insert(DataBridge row);
 
    int insertSelective(DataBridge row);
 
    DataBridge selectByPrimaryKey(String id);
 
    int updateByPrimaryKeySelective(DataBridge row);
 
    int updateByPrimaryKey(DataBridge row);
}