Created
December 17, 2019 18:04
-
-
Save rajendrakumaryadav/f707a999de6ec1e60623f8c98953fb49 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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