Skip to content

Instantly share code, notes, and snippets.

@nikhil3000
Last active June 23, 2020 10:23
Show Gist options
  • Save nikhil3000/6aa84eeceef64d2ce050d9fd1061df0c to your computer and use it in GitHub Desktop.
Save nikhil3000/6aa84eeceef64d2ce050d9fd1061df0c to your computer and use it in GitHub Desktop.
public class User {
private int id;
private String name;
public User() {}
public User(int _id, String _name) {
this.id = _id;
this.name = _name;
}
@JsonProperty
public int getid() {
return id;
}
@JsonProperty
public String getName() {
return name;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment