12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- package com.usky.constant;
- import java.util.HashMap;
- import java.util.Map;
- public interface CommonConstant {
- /**
- * 正常状态
- */
- public static final Integer STATUS_NORMAL = 0;
- /**
- * 禁用状态
- */
- public static final Integer STATUS_DISABLE = -1;
- /**
- * 删除标志
- */
- public static final Integer DEL_FLAG_1 = 1;
- /**
- * 未删除
- */
- public static final Integer DEL_FLAG_0 = 0;
- /**
- * 系统日志类型: 登录
- */
- public static final int LOG_TYPE_1 = 1;
- /**
- * 系统日志类型: 操作
- */
- public static final int LOG_TYPE_2 = 2;
- /**
- * 操作日志类型: 查询
- */
- public static final int OPERATE_TYPE_1 = 1;
- /**
- * 操作日志类型: 添加
- */
- public static final int OPERATE_TYPE_2 = 2;
- /**
- * 操作日志类型: 更新
- */
- public static final int OPERATE_TYPE_3 = 3;
- /**
- * 操作日志类型: 删除
- */
- public static final int OPERATE_TYPE_4 = 4;
- /**
- * 操作日志类型: 导入
- */
- public static final int OPERATE_TYPE_5 = 5;
- /**
- * 操作日志类型: 导出
- */
- public static final int OPERATE_TYPE_6 = 6;
- /**
- * {@code 500 Server Error} (HTTP/1.0 - RFC 1945)
- */
- public static final Integer SC_INTERNAL_SERVER_ERROR_500 = 500;
- /**
- * {@code 200 OK} (HTTP/1.0 - RFC 1945)
- */
- public static final Integer SC_OK_200 = 200;
- /**
- * 首页天气地址
- */
- public static final String TOP_WEATHER_HOST = "https://weather01.market.alicloudapi.com";
- public static final String TOP_WEATHER_PATH = "/area-to-weather";
- public static final String TOP_WEATHER_METHOD = "GET";
- public static final String TOP_WEATHER_APPCODE = "0f2b7fce6e104ba8835358b7b59b4fb6";
- /**
- * MQTT数据接收类型
- */
- public static final String MQTT_MESSAGE_TYPE_INFO = "INFO";
- public static final String MQTT_MESSAGE_TYPE_ALARM = "ALARM";
- }
|