package com.matrix.system.constance;
|
|
public class SystemConstance {
|
|
|
|
|
/**
|
* 自动创建用户时使用
|
*/
|
public static final String SYSTEM_USER = "SYSTEM";
|
|
|
/**
|
* 登陆前要访问的地址
|
*/
|
public static final String GO_URL = "GO_URL";
|
|
/**
|
* session购物车常量
|
*/
|
public static final String SHOPPING_CAR = "SHOPPING_CAR";
|
|
/**
|
* 微信端在线预约服务单
|
*/
|
public static final String WECHAT_SERVICE = "WECHAT_SERVICE";
|
|
|
/**
|
* 字符串分割符号,用于多个ID之间的分割
|
*/
|
public static final String STRING_SPLIT_CHAR = ",";
|
|
/**
|
* 常量“左斜杠”
|
*/
|
public static final String LEFT_SLASH = "/";
|
|
/**
|
* 常量“字符.”
|
*/
|
public static final String CHARACTER_ALL = "\\.";
|
|
/**
|
* 常量“字符左斜杠”
|
*/
|
public static final String CHARACTER_LEFT = "\\/";
|
|
/**
|
* 常量“一个空格”
|
*/
|
public static final String CHARACTER_BLANK = " ";
|
|
/**
|
* 常量“.class”
|
*/
|
public static final String CLASS_FILE_EXTEND_NAME = ".class";
|
|
/**
|
* 空格转码后结果
|
*/
|
public static final String SPACE_REPLEACE_STRING = "%20";
|
|
/**
|
* 常量"WEB-INF"路径
|
*/
|
public static final String CONFIG_ROOT = "WEB-INF/";
|
|
|
|
public static final String WECHAT_KJ_URL = "http://www.mydoline.com/wxKjact/goodsList";
|
|
|
}
|