package com.casic.common; import com.alibaba.fastjson.JSONObject; public interface CasicProtocol { boolean checkFrame(String frame); String getDeviceId(String frame); String getManufacturerCode(String frame); String getDeviceType(String frame); String getMessageType(String frame); String getMessageBody(String frame); JSONObject parseMessageBody(String messageBody); String getUptime(String frame); String buildFrameStr(CasicFrame frame); }