com.github.azbh111.utils.java.constant.GlobalConstant Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of utils-java Show documentation
Show all versions of utils-java Show documentation
com.github.azbh111:utils-java
The newest version!
package com.github.azbh111.utils.java.constant;
/**
* 全局常量
*
* @author: zyp
* @date: 2020/11/20 10:17
*/
public final class GlobalConstant {
private static String reqIdKey = "reqId";
public static String getReqIdKey() {
return reqIdKey;
}
public static void setReqIdKey(String reqIdKey) {
GlobalConstant.reqIdKey = reqIdKey;
}
}