Guest User

Untitled

a guest
Jul 12th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. @Entity
  2. @NoArgsConstructor
  3. @Getter @Setter
  4. public class Account {
  5.  
  6. @Id
  7. private String username;
  8.  
  9. private String password;
  10.  
  11. public Account(String username, String password) {
  12. this.username = username;
  13. this.password = password;
  14. }
  15. }
Add Comment
Please, Sign In to add comment