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.
36 lines
608 B
36 lines
608 B
package com.lpro.iot.common;
|
|
|
|
public class Code {
|
|
|
|
public static class IOT_NODE_STATUS {
|
|
|
|
public static final Integer online = 16 ;
|
|
|
|
public static final Integer offline = 17;
|
|
|
|
}
|
|
|
|
public static class ResponseCode{
|
|
|
|
public static final Integer OK = 2 ;
|
|
|
|
public static final Integer NO_DATA = 4 ;
|
|
}
|
|
|
|
/**
|
|
* 设备状态
|
|
* @author chenrj
|
|
*
|
|
*/
|
|
public static class DEVICE_STATUS{
|
|
|
|
public static final Integer ONLINE = 16 ;
|
|
|
|
public static final Integer OFFLINE = 17 ;
|
|
|
|
public static final Integer UNCONTECT = 18;
|
|
|
|
public static final Integer FAILURE = 19 ;
|
|
}
|
|
|
|
}
|