forked from luyan/epmet-cloud-lingshan
3 changed files with 74 additions and 4 deletions
@ -0,0 +1,43 @@ |
|||||
|
package com.epmet.modules.partyOrg.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; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 党建数据统计 |
||||
|
*/ |
||||
|
@HeadStyle(fillPatternType = FillPatternTypeEnum.SOLID_FOREGROUND, fillForegroundColor = 44) |
||||
|
@Data |
||||
|
public class PartyActStatisExcel implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -12110233388005838L; |
||||
|
|
||||
|
@ExcelProperty(value = "党组织名称") |
||||
|
@ColumnWidth(20) |
||||
|
private String joinOrgName; |
||||
|
@ExcelProperty(value = "支部党员大会(次)") |
||||
|
@ColumnWidth(30) |
||||
|
private Integer dydhNum = 0; |
||||
|
@ExcelProperty(value = "支部委员会(次)") |
||||
|
@ColumnWidth(20) |
||||
|
private Integer wyhNum = 0; |
||||
|
@ExcelProperty(value = "党小组会(次)") |
||||
|
@ColumnWidth(20) |
||||
|
private Integer dxzhNum = 0; |
||||
|
@ExcelProperty(value = "党课(次)") |
||||
|
@ColumnWidth(20) |
||||
|
private Integer dkNum = 0; |
||||
|
@ExcelProperty(value = "主题党日(次)") |
||||
|
@ColumnWidth(20) |
||||
|
private Integer ztdrNum = 0; |
||||
|
@ExcelProperty(value = "为民服务活动(次)") |
||||
|
@ColumnWidth(30) |
||||
|
private Integer wmfwNum = 0; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue