| | |
| | | package com.panzhihua.sangeshenbian.model.excel; |
| | | |
| | | import cn.idev.excel.annotation.ExcelProperty; |
| | | import com.panzhihua.sangeshenbian.annotation.TargetEnum; |
| | | import com.panzhihua.sangeshenbian.conveter.EConverter; |
| | | import com.panzhihua.sangeshenbian.enums.ComplaintExportEnum; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import javax.validation.constraints.NotBlank; |
| | |
| | | @Data |
| | | public class ComplaintExcel { |
| | | @ExcelProperty(value = "录入人") |
| | | private String nickname; |
| | | private String reportUserName; |
| | | |
| | | @ExcelProperty(value = "录入人联系方式") |
| | | private String phone; |
| | | private String reportUserPhone; |
| | | |
| | | @ExcelProperty(value = "群众姓名") |
| | | private String name; |
| | |
| | | @ExcelProperty(value = "详细地址描述") |
| | | private String detailedAddress; |
| | | |
| | | @ExcelProperty(value = "流转状态:0-正在办理 1-延期办理 2-超时办理 3-已办结 4-群众撤销 5-上报待审核 6-上级驳回 7-延期待审核") |
| | | @ExcelProperty(value = "状态",converter = EConverter.class) |
| | | @TargetEnum(type = ComplaintExportEnum.class) |
| | | private Integer status; |
| | | } |