| | |
| | | package com.ruoyi.system.model; |
| | | |
| | | import cn.afterturn.easypoi.excel.annotation.Excel; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | |
| | | private Integer id; |
| | | |
| | | @ApiModelProperty(value = "姓名") |
| | | @Excel(name = "姓名", width = 20,orderNum = "1") |
| | | private String name; |
| | | |
| | | @ApiModelProperty(value = "联系电话") |
| | | @Excel(name = "电话", width = 20,orderNum = "2") |
| | | |
| | | private String phone; |
| | | |
| | | @ApiModelProperty(value = "村社ID") |
| | | private Integer communityId; |
| | | |
| | | @ApiModelProperty(value = "村社名称") |
| | | @Excel(name = "村社", width = 40,orderNum = "3") |
| | | |
| | | private String communityName; |
| | | |
| | | @ApiModelProperty(value = "身份证") |
| | | @Excel(name = "村社", width = 40,orderNum = "4") |
| | | private String idCard; |
| | | |
| | | @ApiModelProperty(value = "坐落地点") |
| | | @Excel(name = "房屋总面积", width = 40,orderNum = "7") |
| | | private String address; |
| | | |
| | | @ApiModelProperty(value = "房屋总面积(㎡)") |
| | | @Excel(name = "房屋总面积", width = 40,orderNum = "5") |
| | | private Double totalArea; |
| | | |
| | | @ApiModelProperty(value = "是否安置") |
| | |
| | | @ApiModelProperty(value = "是否删除 0-否,1-是") |
| | | @TableLogic |
| | | private Boolean disabled; |
| | | |
| | | @ApiModelProperty(value = "结构") |
| | | @TableField(exist = false) |
| | | private String constructionTypes; |
| | | |
| | | } |