9 changed files with 269 additions and 1 deletions
@ -0,0 +1,22 @@ |
|||||
|
package com.elink.esua.epdc.dto.item.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 重复数据 |
||||
|
* |
||||
|
* @author zhy |
||||
|
* @date 2022/11/29 10:18 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ItemChangeRepeatDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
private String itemId; |
||||
|
|
||||
|
private Integer repeatFlag; |
||||
|
} |
||||
@ -0,0 +1,93 @@ |
|||||
|
package com.elink.esua.epdc.modules.item.excel; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import com.alibaba.excel.annotation.ExcelProperty; |
||||
|
import com.alibaba.excel.annotation.write.style.ColumnWidth; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description: |
||||
|
* @Return |
||||
|
* @Author: lichao |
||||
|
* @Date: 2023/4/23 13:58 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class ItemAppealExcel implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = 1L; |
||||
|
|
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 属事街道 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "属事街道") |
||||
|
@ColumnWidth(25) |
||||
|
private String streetName; |
||||
|
|
||||
|
/** |
||||
|
* 属事社区 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "属事社区") |
||||
|
@ColumnWidth(25) |
||||
|
private String communityName; |
||||
|
|
||||
|
/** |
||||
|
* 属事网格 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "属事网格") |
||||
|
@ColumnWidth(25) |
||||
|
private String gridName; |
||||
|
|
||||
|
/** |
||||
|
* 手机号 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "手机号") |
||||
|
@ColumnWidth(25) |
||||
|
private String mobile; |
||||
|
|
||||
|
/** |
||||
|
* 诉求内容 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "诉求内容") |
||||
|
@ColumnWidth(25) |
||||
|
private String itemContent; |
||||
|
|
||||
|
/** |
||||
|
* 项目状态 0-处理中,5-已关闭,10-已结案 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "处理状态") |
||||
|
@ColumnWidth(25) |
||||
|
private String itemStateName; |
||||
|
/** |
||||
|
* 上报时间 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "上报时间") |
||||
|
@ColumnWidth(25) |
||||
|
private String createdTime; |
||||
|
/** |
||||
|
* 超时时间 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "事件事件") |
||||
|
@ColumnWidth(25) |
||||
|
private String remainTime; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 提交人 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "联系人姓名") |
||||
|
@ColumnWidth(25) |
||||
|
private String nickName; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 满意度评价名称 |
||||
|
*/ |
||||
|
@ExcelProperty(value = "满意度") |
||||
|
@ColumnWidth(25) |
||||
|
private String evaluationScoreName; |
||||
|
|
||||
|
} |
||||
Loading…
Reference in new issue