liusuyi
2026-06-01 3496700a5ba18be8ca0590a79e21a867782d1ea9
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
28
29
package com.ard.gb28181.mapper;
 
import com.ard.gb28181.domain.GbDevice;
import org.apache.ibatis.annotations.Mapper;
import org.springframework.stereotype.Repository;
 
import java.util.List;
 
/**
 * 国标设备Mapper接口
 */
@Mapper
@Repository
public interface GbDeviceMapper {
 
    GbDevice selectGbDeviceById(Long id);
 
    GbDevice selectGbDeviceByGbDeviceId(String gbDeviceId);
 
    List<GbDevice> selectGbDeviceList(GbDevice gbDevice);
 
    int insertGbDevice(GbDevice gbDevice);
 
    int updateGbDevice(GbDevice gbDevice);
 
    int deleteGbDeviceById(Long id);
 
    int deleteGbDeviceByIds(String[] ids);
}