1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.fzzy.gateway.api;
|
| import com.fzzy.gateway.entity.GatewayDevice;
|
|
| public interface DeviceReportService {
|
| /**
| * 协议定义
| *
| * @return
| */
| String getProvinceProtocol();
|
|
| /**
| * 通过设备序列号返回结果信息
| *
| * @param weigh
| * @param device 设备序列号
| */
| String report2GatewayBySn(double weigh, GatewayDevice device);
|
| }
|
|