jiaosong
2023-12-08 30a14783481d100a6503a56c902b47182e542c93
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
30
31
32
33
34
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);
}