forked from rongchao/epmet-cloud-rizhao
18 changed files with 441 additions and 4 deletions
@ -0,0 +1,40 @@ |
|||
package com.epmet.dataaggre.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; |
|||
|
|||
/** |
|||
* 数字平台党员信息表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2022-05-17 |
|||
*/ |
|||
@HeadStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 44) |
|||
@Data |
|||
public class MemberProjectInfoExcel { |
|||
|
|||
@ColumnWidth(10) |
|||
@ExcelProperty(value = "序号",order = 1) |
|||
private Integer index; |
|||
|
|||
@ColumnWidth(30) |
|||
@ExcelProperty(value = "网格员",order = 2) |
|||
private String name; |
|||
|
|||
@ColumnWidth(40) |
|||
@ExcelProperty(value = "所属组织",order = 3) |
|||
private String idCard; |
|||
|
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "上报数量",order = 4) |
|||
private String mobile; |
|||
|
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "办结数",order = 5) |
|||
private String rdsj; |
|||
|
|||
|
|||
} |
@ -0,0 +1,47 @@ |
|||
package com.epmet.dataaggre.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; |
|||
|
|||
/** |
|||
* 数字平台党员信息表 |
|||
* |
|||
* @author generator generator@elink-cn.com |
|||
* @since v1.0.0 2022-05-17 |
|||
*/ |
|||
@HeadStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 44) |
|||
@Data |
|||
public class OrgProjectDetailExcel { |
|||
|
|||
@ColumnWidth(10) |
|||
@ExcelProperty(value = "序号",order = 1) |
|||
private Integer index; |
|||
|
|||
@ColumnWidth(40) |
|||
@ExcelProperty(value = "所属组织",order = 2) |
|||
private String orgName; |
|||
|
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "网格员数",order = 3) |
|||
private String memberCount; |
|||
|
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "上报数量",order = 4) |
|||
private String projectCount; |
|||
|
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "办结数",order = 5) |
|||
private String closedCount; |
|||
|
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "人均上报",order = 6) |
|||
private String projectAve; |
|||
|
|||
@ColumnWidth(20) |
|||
@ExcelProperty(value = "人均办结",order = 7) |
|||
private String closedAve; |
|||
|
|||
} |
Loading…
Reference in new issue