SAML ID Service Fix

SAML ID Service Fix
This commit is contained in:
Crystal.Sea
2021-09-07 10:15:24 +08:00
parent 1ee130c6f6
commit 2604a90518
2 changed files with 17 additions and 17 deletions

View File

@@ -23,6 +23,6 @@ import java.util.UUID;
public class IDService {
public String generateID() {
return UUID.randomUUID().toString();
return "MXK_" + UUID.randomUUID().toString();
}
}