package com.cloud.device.constants;
|
|
public class Constants {
|
|
/**
|
* 设备类型
|
*/
|
public static final String DEVICE_TYPE = "DEVICE_TYPE";
|
|
/**
|
* 组织机构类型
|
*/
|
public static final String ORG_TYPE = "ORG_TYPE";
|
|
|
public static final String RESULT_QUERY_OK = "查询成功";
|
|
public static final String RESULT_QUERY_FAIL = "查询失败";
|
|
public static final String RESULT_SAVE_OK = "保存成功";
|
|
public static final String RESULT_SAVE_FAIL = "保存失败";
|
|
public static final String RESULT_DELETE_OK = "删除成功";
|
|
public static final String RESULT_DELETE_FAIL = "删除失败";
|
|
public static final String TYPE_MENU = "MENU";
|
|
public static final String TYPE_CLUSTER = "1";
|
public static final String TYPE_NODE = "2";
|
public static final String TYPE_DISK = "3";
|
public static final String TYPE_DEVICE = "4";
|
|
|
public static final Integer DEVICE_STATUS_OK = 0;
|
|
|
|
|
|
public static final Integer DEVICE_STATUS_WRONG = -1;
|
|
public static final Integer DEVICE_STATUS_SOS = 1;
|
|
|
}
|