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);
|
}
|