first commit
This commit is contained in:
20
hrmsEjb/wenrgise/report/excel/Heading.java
Normal file
20
hrmsEjb/wenrgise/report/excel/Heading.java
Normal file
@@ -0,0 +1,20 @@
|
||||
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;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user