Skip to content

Instantly share code, notes, and snippets.

@ksakae1216
Created June 16, 2016 02:36
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 ksakae1216/b250631c9e33c14b77949b0d955279a8 to your computer and use it in GitHub Desktop.
Save ksakae1216/b250631c9e33c14b77949b0d955279a8 to your computer and use it in GitHub Desktop.
package sample.bean;
public class DataBean {
private String col1;
private String col2;
public DataBean() {
}
public DataBean(String col1, String col2) {
this.col1 = col1;
this.col2 = col2;
}
public void setCol1(String col1) {
this.col1 = col1;
}
public void setCol2(String col2) {
this.col2 = col2;
}
public String getCol1() {
return this.col1;
}
public String getCol2() {
return this.col2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment