5 changed files with 91 additions and 9 deletions
@ -0,0 +1,52 @@ |
|||||
|
package com.epmet.dto.result.demand; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import com.fasterxml.jackson.annotation.JsonFormat; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
import java.util.Date; |
||||
|
|
||||
|
@Data |
||||
|
public class DemandRecExcelResultDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -1110606022410166621L; |
||||
|
|
||||
|
@Excel(name = "状态", width = 15) |
||||
|
private String statusName; |
||||
|
|
||||
|
@Excel(name = "所属网格", width = 40) |
||||
|
private String gridName; |
||||
|
|
||||
|
@Excel(name = "需求类型", width = 40) |
||||
|
private String categoryName; |
||||
|
|
||||
|
@Excel(name = "需求内容", width = 40) |
||||
|
private String content; |
||||
|
|
||||
|
@Excel(name = "上报类型", width = 40) |
||||
|
private String reportTypeName; |
||||
|
|
||||
|
@Excel(name = "上报人", width = 20) |
||||
|
private String reportUserName; |
||||
|
|
||||
|
@Excel(name = "上报时间", width = 25) |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
||||
|
private Date reportTime; |
||||
|
|
||||
|
@Excel(name = "需求人", width = 20) |
||||
|
private String demandUserName; |
||||
|
|
||||
|
/** |
||||
|
* 尹作梅(志愿者) |
||||
|
* XXX(社会组织) |
||||
|
* XXX(社区自组织) |
||||
|
* XXX(区域化党建单位) |
||||
|
*/ |
||||
|
@Excel(name = "服务方", width = 15) |
||||
|
private String serviceShowName; |
||||
|
|
||||
|
@Excel(name = "服务时间", width = 25) |
||||
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
||||
|
private Date wantServiceTime; |
||||
|
} |
Loading…
Reference in new issue