Skip to content

Instantly share code, notes, and snippets.

@rajendrakumaryadav
Created December 17, 2019 18:04
Show Gist options
  • Save rajendrakumaryadav/f707a999de6ec1e60623f8c98953fb49 to your computer and use it in GitHub Desktop.
Save rajendrakumaryadav/f707a999de6ec1e60623f8c98953fb49 to your computer and use it in GitHub Desktop.
package in.co.dreamsdoor.beans;
public class Student {
private int id;
private String name;
private String std;
public Student(int id, String name, String std) {
super();
this.id = id;
this.name = name;
this.std = std;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getStd() {
return std;
}
public void setStd(String std) {
this.std = std;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment