9 changed files with 208 additions and 0 deletions
@ -0,0 +1,38 @@ |
|||
package com.elink.esua.epdc.modules.screen.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import com.alibaba.excel.annotation.ExcelProperty; |
|||
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
|||
import com.alibaba.excel.annotation.write.style.HeadStyle; |
|||
import com.alibaba.excel.enums.poi.FillPatternTypeEnum; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author zhaoqifeng |
|||
* @Date 2022/4/13 10:46 |
|||
*/ |
|||
@Data |
|||
public class ScreenDataExportExcel { |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "部门",order = 1) |
|||
private String deptName; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "问题总上报数",order = 2) |
|||
private Integer eventCount; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = {"分类", "发展诉求"},order = 3) |
|||
private Integer developCount; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = {"分类", "执法诉求"},order = 4) |
|||
private Integer lawCount; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = {"分类", "民生诉求"},order = 5) |
|||
private Integer livelihoodCount; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "响应数",order = 6) |
|||
private Integer responseCount; |
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "办结数",order = 7) |
|||
private Integer closedCount; |
|||
} |
|||
Loading…
Reference in new issue