package com.fzzy.gateway.hx2023;
|
|
import org.apache.commons.lang.math.RandomUtils;
|
|
/**
|
* 常量
|
*/
|
public class ScConstant {
|
|
public static String API_URL_AUTH = "${auth}/authorize/login";
|
|
|
public static String MESSAGE_TYPE_REPORT_PROPERTY = "REPORT_PROPERTY";
|
|
|
public static String getMessageId() {
|
return System.currentTimeMillis() + RandomUtils.nextInt(1000) + "";
|
}
|
|
|
public static int CODE_200 = 200;
|
}
|