mirror of
https://gitee.com/pan648540858/wvp-GB28181-pro.git
synced 2026-05-15 18:17:50 +08:00
29 lines
592 B
Java
29 lines
592 B
Java
package com.genersoft.iot.vmp.service;
|
|
|
|
import com.genersoft.iot.vmp.service.bean.Region;
|
|
import com.genersoft.iot.vmp.vmanager.bean.PageInfo;
|
|
|
|
import java.util.List;
|
|
|
|
public interface IRegionService {
|
|
|
|
void add(Region region);
|
|
|
|
void deleteByDeviceId(String regionDeviceId);
|
|
|
|
/**
|
|
* 查询区划列表
|
|
*/
|
|
PageInfo<Region> query(String query, int page, int count);
|
|
|
|
/**
|
|
* 查询子区划列表
|
|
*/
|
|
PageInfo<Region> queryChildGroupList(String regionParentId, int page, int count);
|
|
|
|
/**
|
|
* 更新区域
|
|
*/
|
|
void update(Region region);
|
|
}
|