Explorar el Código

追加丢失的文件

4.1.3.A
xfworld hace 9 años
padre
commit
a0a1f84bb7
Se han modificado 5 ficheros con 51 adiciones y 3 borrados
  1. +0
    -1
      build.gradle
  2. +6
    -1
      easypoi-annotation/build.gradle
  3. +6
    -1
      easypoi-base/build.gradle
  4. +35
    -0
      easypoi-base/src/main/java/org/jeecgframework/poi/excel/entity/ExportExcelItem.java
  5. +4
    -0
      easypoi-web/build.gradle

+ 0
- 1
build.gradle Ver fichero

@@ -3,7 +3,6 @@ apply plugin : 'eclipse'

allprojects {
apply plugin: 'maven'

group = 'org.jeecg'
version = '2.3.0'
}


+ 6
- 1
easypoi-annotation/build.gradle Ver fichero

@@ -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 = ''

+ 6
- 1
easypoi-base/build.gradle Ver fichero

@@ -1,11 +1,16 @@
apply plugin: "java"
apply plugin: "eclipse"


sourceCompatibility = 1.7
targetCompatibility = 1.7
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
description = ''
dependencies {
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-schemas', version:'3.10-FINAL') {
exclude(module: 'xercesImpl')
exclude(module: 'xercesImpl')
}
compile group: 'xerces', name: 'xercesImpl', version:'2.9.1'
compile group: 'org.apache.poi', name: 'poi-scratchpad', version:'3.10-FINAL'


+ 35
- 0
easypoi-base/src/main/java/org/jeecgframework/poi/excel/entity/ExportExcelItem.java Ver fichero

@@ -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;
}
}

+ 4
- 0
easypoi-web/build.gradle Ver fichero

@@ -1,4 +1,8 @@
apply plugin: "java"
apply plugin: "eclipse"
sourceCompatibility = 1.7
targetCompatibility = 1.7
[compileJava, compileTestJava, javadoc]*.options*.encoding = 'UTF-8'
description = ''
dependencies {
compile group: 'org.springframework', name: 'spring-web', version:'3.1.1.RELEASE'


Cargando…
Cancelar
Guardar