Created
August 13, 2016 23:57
-
-
Save AgiMaulana/0b81a547912966d31e06b9bc1daea9bf 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 lab.agimaulana.excelreadwrite.model; | |
/** | |
* Created by root on 8/13/16. | |
*/ | |
public class People { | |
private String name; | |
private String job; | |
private String phone; | |
private String email; | |
private String address; | |
public People() { | |
} | |
public People( String name, String job, String phone, String email, String address) { | |
this.name = name; | |
this.job = job; | |
this.phone = phone; | |
this.email = email; | |
this.address = address; | |
} | |
public String getAddress() { | |
return address; | |
} | |
public void setAddress(String address) { | |
this.address = address; | |
} | |
public String getEmail() { | |
return email; | |
} | |
public void setEmail(String email) { | |
this.email = email; | |
} | |
public String getJob() { | |
return job; | |
} | |
public void setJob(String job) { | |
this.job = job; | |
} | |
public String getName() { | |
return name; | |
} | |
public void setName(String name) { | |
this.name = name; | |
} | |
public String getPhone() { | |
return phone; | |
} | |
public void setPhone(String phone) { | |
this.phone = phone; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment