Guest User

Untitled

a guest
Jul 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. package com.ssaurel.fastjson;
  2.  
  3. public class User {
  4.  
  5. private Long id;
  6. private String name;
  7.  
  8. public Long getId() {
  9. return id;
  10. }
  11.  
  12. public void setId(Long id) {
  13. this.id = id;
  14. }
  15.  
  16. public String getName() {
  17. return name;
  18. }
  19.  
  20. public void setName(String name) {
  21. this.name = name;
  22. }
  23.  
  24. }
Add Comment
Please, Sign In to add comment