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.
19 lines
439 B
19 lines
439 B
package com.yx.utils;
|
|
|
|
public class Constants {
|
|
|
|
public final static int OK_CODE = 0; //0表示Ok
|
|
|
|
public final static int FAIL_CODE = 400;
|
|
|
|
public final static String OK_MSG = "请求成功";
|
|
|
|
public final static String FAIL_MSG = "请求失败";
|
|
|
|
public final static int STATUS_0 = 0;//可用状态
|
|
|
|
public final static int STATUS_1 = 1;//禁用状态
|
|
|
|
public final static String CACHE_NAME = "KACache";
|
|
}
|