| 9 | import lombok.NoArgsConstructor; |
| 10 | |
| 11 | @Entity |
| 12 | @Data |
| 13 | @AllArgsConstructor |
| 14 | @NoArgsConstructor |
| 15 | public 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 | } |
nothing calls this directly
no outgoing calls
no test coverage detected