MCPcopy Create free account
hub / github.com/bansh2eBreak/SpringVulnBoot-backend / Admin

Class Admin

src/main/java/icu/secnotes/pojo/Admin.java:8–20  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6import java.time.LocalDateTime;
7
8@Data
9@NoArgsConstructor
10@AllArgsConstructor
11public class Admin {
12 private Integer id;
13 private String name;
14 private String username;
15 private String password;
16 private String token;
17 private String avatar;
18 private LocalDateTime createTime;
19 private String role; // 用户角色:admin-管理员, guest-访客
20}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected