This commit is contained in:
2023-07-18 17:31:08 +08:00
parent 1b3a3fdfb7
commit 94242e17a0
13 changed files with 172 additions and 95 deletions

View File

@ -1,5 +1,7 @@
package com.qiaoba.common.base.constant;
import cn.hutool.core.lang.UUID;
/**
* BaseConstant
*
@ -79,4 +81,13 @@ public class BaseConstant {
*/
public static final Integer HANDLE_ERROR = 0;
/**
* 服务SN
*/
public static String SERVER_SN;
static {
SERVER_SN = UUID.fastUUID().toString(true);
}
}