package com.doumee.service.business;
|
|
import com.doumee.core.haikang.model.param.request.AcsDeviceListRequest;
|
import com.doumee.core.haikang.model.param.request.ParkListRequest;
|
import com.doumee.core.haikang.model.param.request.PrivilegeGroupRequest;
|
|
/**
|
* 停车场事件推送记录表Service定义
|
* @author 江蹄蹄
|
* @date 2023/11/30 15:33
|
*/
|
public interface HkSyncService {
|
/**
|
* 同步海康门禁设备
|
* @param param
|
* @return
|
*/
|
String syncHkDevices(AcsDeviceListRequest param);
|
|
/**
|
* 同步海康停车库
|
* @param param
|
* @return
|
*/
|
|
String syncHkParks(ParkListRequest param);
|
|
/**
|
* 同步海康访客权限组
|
* @param param
|
* @return
|
*/
|
String syncPrivilege(PrivilegeGroupRequest param);
|
}
|