MCPcopy Create free account
hub / github.com/Java-Techie-jt/spring-boot3-jwt / UserInfo

Class UserInfo

src/main/java/com/javatechie/entity/UserInfo.java:11–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9import lombok.NoArgsConstructor;
10
11@Entity
12@Data
13@AllArgsConstructor
14@NoArgsConstructor
15public class UserInfo {
16 @Id
17 @GeneratedValue(strategy = GenerationType.IDENTITY)
18 private int id;
19 private String name;
20 private String email;
21 private String password;
22 private String roles;
23}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected