3 changed files with 58 additions and 7 deletions
@ -0,0 +1,31 @@ |
|||
package com.epmet.excel; |
|||
|
|||
import cn.afterturn.easypoi.excel.annotation.CellStyler; |
|||
import cn.afterturn.easypoi.excel.annotation.Excel; |
|||
import lombok.Data; |
|||
|
|||
@Data |
|||
public class ExportCommunitySelfOrganizationExcel { |
|||
|
|||
@Excel(name = "排序") |
|||
private Integer sort; |
|||
|
|||
@Excel(name = "组织名称", width = 40) |
|||
private String organizationName; |
|||
|
|||
@Excel(name = "组织人数", width = 20) |
|||
private Integer organizationPersonCount; |
|||
|
|||
@Excel(name = "负责人姓名", width = 20) |
|||
private String principalName; |
|||
|
|||
@Excel(name = "负责人电话", width = 20) |
|||
private String principalPhone; |
|||
|
|||
@Excel(name = "服务事项", width = 60) |
|||
private String serviceItem; |
|||
|
|||
@Excel(name = "社区自组织创建时间", width = 20) |
|||
private String organizationCreatedTime; |
|||
|
|||
} |
Loading…
Reference in new issue