Files
tiesheng-springboot/springboot-ademo/src/main/java/com/tiesheng/demo/pojos/TestFile.java

22 lines
373 B
Java

package com.tiesheng.demo.pojos;
import com.tiesheng.poi.pojos.PoiWriteBase;
public class TestFile extends TestParent implements PoiWriteBase {
private String name;
public TestFile(String name) {
this.name = name;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
}