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