4 changed files with 109 additions and 2 deletions
@ -0,0 +1,56 @@
|
||||
package com.biutag.supervision.pojo.vo; |
||||
|
||||
import com.alibaba.excel.annotation.ExcelProperty; |
||||
import lombok.Getter; |
||||
import lombok.Setter; |
||||
|
||||
@Getter |
||||
@Setter |
||||
public class ExportGabxfVo { |
||||
|
||||
@ExcelProperty({"序号"}) |
||||
private Integer index; |
||||
|
||||
@ExcelProperty({"信访件编号"}) |
||||
private String originId; |
||||
|
||||
@ExcelProperty({"投诉渠道"}) |
||||
private String channelForFilingComplaints; |
||||
|
||||
@ExcelProperty({"信访方式"}) |
||||
private String petitionType; |
||||
|
||||
@ExcelProperty({"电话"}) |
||||
private String discoveryTime; |
||||
|
||||
@ExcelProperty({"信访人"}) |
||||
private String responderName; |
||||
|
||||
// 手机号码
|
||||
@ExcelProperty({"手机号码"}) |
||||
private String responderPhone; |
||||
|
||||
// 投诉人
|
||||
@ExcelProperty({"身份证号码"}) |
||||
private String responderIdCode; |
||||
|
||||
@ExcelProperty({"初访重访"}) |
||||
private String initialPetition; |
||||
|
||||
@ExcelProperty({"群众集访"}) |
||||
private String massVisits; |
||||
|
||||
@ExcelProperty({"被投诉机构"}) |
||||
private String secondDepartName; |
||||
|
||||
@ExcelProperty({"办理情况"}) |
||||
private String petitionProcessingStatus; |
||||
|
||||
@ExcelProperty({"接访领导"}) |
||||
private String receivingLeaderName; |
||||
|
||||
@ExcelProperty({"具体内容"}) |
||||
private String thingDesc; |
||||
|
||||
|
||||
} |
||||
Loading…
Reference in new issue