Commit 015164dd by guojuxing

导出Excel二级表头添加

parent 0fa3f0bf
package com.gic.auth.web.vo;
import java.io.Serializable;
public class TestObj implements Serializable{
private static final long serialVersionUID = -4882149987195822359L;
private String store1;
private String store2;
public TestObj() {
}
public TestObj(String store1, String store2) {
this.store1 = store1;
this.store2 = store2;
}
public String getStore1() {
return store1;
}
public TestObj setStore1(String store1) {
this.store1 = store1;
return this;
}
public String getStore2() {
return store2;
}
public TestObj setStore2(String store2) {
this.store2 = store2;
return this;
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment