jiazx0107@163.com
2023-10-31 e95de698a8a0619ede3d5b672ebaf24cac321297
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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) + "";
    }
}