package com.roytuts.java.apache.poi.excel.deal.empty.blank.cell;
public class Info {
private String name;
private String mobile;
private String phone;
private String permAddress;
private String commAddress;
//getters and setters
@Override
public String toString() {
return "Info [name=" + name + ", mobile=" + mobile + ", phone=" + phone + ", permAddress=" + permAddress
+ ", commAddress=" + commAddress + "]";
}
}