chore: update
Java CI with Maven / build-and-test (pull_request) Successful in 16m5s

This commit is contained in:
TakahashiNg
2026-04-20 08:20:38 +00:00
parent 00de3fb8c8
commit c9fe90d9aa
@@ -24,12 +24,14 @@ public abstract class UserModel extends BaseEntity {
public String hashedPassword;
@Transient
protected final String role;
public String role;
protected UserModel(String role) {
this.role = role;
}
public UserModel() {}
@Transactional
public void signup(String name, String phone, String rawPassword) {
UserModel existedUser = UserModel.find("phone", phone).firstResult();