21 lines
313 B
Java
21 lines
313 B
Java
package wenrgise.report.excel;
|
|
|
|
public class Heading {
|
|
private String sName;
|
|
|
|
private int sType;
|
|
|
|
public Heading(String Name, int Type) {
|
|
this.sName = Name;
|
|
this.sType = Type;
|
|
}
|
|
|
|
public String getName() {
|
|
return this.sName;
|
|
}
|
|
|
|
public int getType() {
|
|
return this.sType;
|
|
}
|
|
}
|