| | |
| | | package com.ycl.entity.platform.zfreport; |
| | | |
| | | import com.alibaba.excel.annotation.ExcelProperty; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | * </p> |
| | | * |
| | | * @author lyq |
| | | * @since 2022-09-14 |
| | | * @since 2022-09-15 |
| | | */ |
| | | @Data |
| | | @EqualsAndHashCode(callSuper = false) |
| | |
| | | /** |
| | | * 违法/违建信息来源,字典项 |
| | | */ |
| | | @TableField("inforesoure") |
| | | private String inforesoure; |
| | | @TableField("infoResoure") |
| | | private String infoResoure; |
| | | |
| | | /** |
| | | * 受理人 |
| | |
| | | /** |
| | | * 问题类型 |
| | | */ |
| | | @TableField("problemtypes") |
| | | private String problemtypes; |
| | | @TableField("problemTypes") |
| | | private String problemTypes; |
| | | |
| | | /** |
| | | * 违建/违规类别 |
| | |
| | | /** |
| | | * 事发地址 |
| | | */ |
| | | @TableField("afaddr") |
| | | private String afaddr; |
| | | @TableField("afAddr") |
| | | private String afAddr; |
| | | |
| | | /** |
| | | * 举报人 |
| | |
| | | /** |
| | | * 问题描述 |
| | | */ |
| | | @TableField("problemdesc") |
| | | private String problemdesc; |
| | | @TableField("problemDesc") |
| | | private String problemDesc; |
| | | |
| | | /** |
| | | * 执法人 |
| | |
| | | * 当事人姓名 |
| | | */ |
| | | @TableField("partiesName") |
| | | @ExcelProperty(value = "当事人姓名",index = 0) |
| | | private String partiesName; |
| | | |
| | | /** |
| | | * 当事人身份证号码 |
| | | */ |
| | | @TableField("partiesID") |
| | | @ExcelProperty(value = "当事人身份证号码",index = 1) |
| | | private String partiesID; |
| | | |
| | | /** |
| | | * 当事人联系电话 |
| | | */ |
| | | @TableField("partiesPhone") |
| | | @ExcelProperty(value = "当事人联系电话",index = 2) |
| | | private String partiesPhone; |
| | | |
| | | /** |
| | |
| | | /** |
| | | * 上传附件(违法照片) |
| | | */ |
| | | @TableField("IllegalPhotos") |
| | | private String IllegalPhotos; |
| | | @TableField("illegalPhotos") |
| | | private String illegalPhotos; |
| | | |
| | | /** |
| | | * 整改后照片 |
| | |
| | | @TableField("inspectors") |
| | | private String inspectors; |
| | | |
| | | /** |
| | | * 状态 |
| | | */ |
| | | @TableField("status") |
| | | private String status; |
| | | |
| | | /** |
| | | * 创建时间 |
| | | */ |
| | | @TableField("cTime") |
| | | private LocalDateTime cTime; |
| | | |
| | | /** |
| | | * 所属社区 |
| | | */ |
| | | @TableField("community") |
| | | private String community; |
| | | |
| | | |
| | | } |