@@ -3,7 +3,6 @@ apply plugin : 'eclipse' | |||||
allprojects { | allprojects { | ||||
apply plugin: 'maven' | apply plugin: 'maven' | ||||
group = 'org.jeecg' | group = 'org.jeecg' | ||||
version = '2.3.0' | version = '2.3.0' | ||||
} | } | ||||
@@ -1,2 +1,7 @@ | |||||
apply plugin: "java" | |||||
apply plugin : "java" | |||||
apply plugin : 'eclipse' | |||||
sourceCompatibility = 1.7 | |||||
targetCompatibility = 1.7 | |||||
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8' | |||||
description = '' | description = '' |
@@ -1,11 +1,16 @@ | |||||
apply plugin: "java" | apply plugin: "java" | ||||
apply plugin: "eclipse" | apply plugin: "eclipse" | ||||
sourceCompatibility = 1.7 | |||||
targetCompatibility = 1.7 | |||||
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8' | |||||
description = '' | description = '' | ||||
dependencies { | dependencies { | ||||
compile group: 'org.apache.poi', name: 'poi', version:'3.10-FINAL' | compile group: 'org.apache.poi', name: 'poi', version:'3.10-FINAL' | ||||
compile group: 'org.apache.poi', name: 'poi-ooxml', version:'3.10-FINAL' | compile group: 'org.apache.poi', name: 'poi-ooxml', version:'3.10-FINAL' | ||||
compile(group: 'org.apache.poi', name: 'poi-ooxml-schemas', version:'3.10-FINAL') { | compile(group: 'org.apache.poi', name: 'poi-ooxml-schemas', version:'3.10-FINAL') { | ||||
exclude(module: 'xercesImpl') | |||||
exclude(module: 'xercesImpl') | |||||
} | } | ||||
compile group: 'xerces', name: 'xercesImpl', version:'2.9.1' | compile group: 'xerces', name: 'xercesImpl', version:'2.9.1' | ||||
compile group: 'org.apache.poi', name: 'poi-scratchpad', version:'3.10-FINAL' | compile group: 'org.apache.poi', name: 'poi-scratchpad', version:'3.10-FINAL' | ||||
@@ -0,0 +1,35 @@ | |||||
/** | |||||
* | |||||
*/ | |||||
package org.jeecgframework.poi.excel.entity; | |||||
import java.util.List; | |||||
import java.util.Map; | |||||
import org.jeecgframework.poi.excel.entity.params.ExcelExportEntity; | |||||
/** | |||||
* @author xfworld | |||||
* @since 2016-5-26 | |||||
* @version 1.0 | |||||
*/ | |||||
public class ExportExcelItem { | |||||
private List<ExcelExportEntity> entityList; | |||||
private List<Map<String, Object>> resultList; | |||||
public List<ExcelExportEntity> getEntityList() { | |||||
return this.entityList; | |||||
} | |||||
public void setEntityList(List<ExcelExportEntity> entityList) { | |||||
this.entityList = entityList; | |||||
} | |||||
public List<Map<String, Object>> getResultList() { | |||||
return this.resultList; | |||||
} | |||||
public void setResultList(List<Map<String, Object>> resultList) { | |||||
this.resultList = resultList; | |||||
} | |||||
} |
@@ -1,4 +1,8 @@ | |||||
apply plugin: "java" | apply plugin: "java" | ||||
apply plugin: "eclipse" | |||||
sourceCompatibility = 1.7 | |||||
targetCompatibility = 1.7 | |||||
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8' | |||||
description = '' | description = '' | ||||
dependencies { | dependencies { | ||||
compile group: 'org.springframework', name: 'spring-web', version:'3.1.1.RELEASE' | compile group: 'org.springframework', name: 'spring-web', version:'3.1.1.RELEASE' | ||||