🔨 上传文件.

This commit is contained in:
lijiahang
2024-02-21 19:14:19 +08:00
parent f4d63d4b99
commit 8377294662
12 changed files with 236 additions and 61 deletions

View File

@@ -206,7 +206,7 @@ export function getUUID() {
/**
* 获取会话id
*/
export const nextSessionId = (len: number): string => {
export const nextId = (len: number): string => {
return getUUID().replaceAll('-', '').substring(0, len);
};