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); }