You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
512 B
16 lines
512 B
1 year ago
|
package com.zc.business.service;
|
||
|
|
||
|
import com.alibaba.fastjson.JSONObject;
|
||
|
import com.baomidou.mybatisplus.extension.service.IService;
|
||
|
import com.zc.business.domain.DcTrafficSectionData;
|
||
|
|
||
|
public interface DcTrafficSectionDataService extends IService<DcTrafficSectionData> {
|
||
|
|
||
|
/**
|
||
|
* 处理实时接收到的设备消息,并将其转换为交通断面统计数据对象并缓存。
|
||
|
*
|
||
|
* @param msg 设备发送的JSON格式实时消息
|
||
|
*/
|
||
|
void processRealtimeMessage(JSONObject msg);
|
||
|
}
|