遥控升级设备类
class RemoteUgrade
描述: 遥控升级设备类
class RemoteUpgradeDevice(val id: Int) : IBaseDevice {
    //用于分配连接信息的协议对象
     private var protoProtocol: ProtoProtocol? = null
     
    //key管理对象
      private var keyManager: IKeyManager? = null
      
    //状态缓存管理器对象
     private var statesCacheManager : IStatesCacheManager? = null
}