1
2
3
4
5
6
7
8
9
10
11
12
| package com.doumee.service.business;
|
| import com.doumee.core.haikang.model.param.request.AcsDeviceListRequest;
|
| /**
| * 停车场事件推送记录表Service定义
| * @author 江蹄蹄
| * @date 2023/11/30 15:33
| */
| public interface HkSyncService {
| String syncHkDevices(AcsDeviceListRequest param);
| }
|
|