Skip to content

Instantly share code, notes, and snippets.

@visparashar
Created February 20, 2018 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save visparashar/95ade92636e213336f8e0d0f5e87abe7 to your computer and use it in GitHub Desktop.
Save visparashar/95ade92636e213336f8e0d0f5e87abe7 to your computer and use it in GitHub Desktop.
package com.programinjava.learning.RestApiDemo.dto;
public class JsonUser {
public Integer id;
public String name;
public Long mobileNumber;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Long getMobileNumber() {
return mobileNumber;
}
public void setMobileNumber(Long mobileNumber) {
this.mobileNumber = mobileNumber;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment