update:demo12

This commit is contained in:
dichgrem
2026-01-16 16:19:52 +08:00
parent 1bbfe0e546
commit a7334f14dc
6 changed files with 84 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
package com.study.demo12;
public class LoginCodeGenerator implements CodeGenerator {
@Override
public String generate() {
return "LOGIN" + System.currentTimeMillis();
}
}