无关风月
3 天以前 78b6c7de4a1e710b4b20c96f1caf44f5624d37de
ruoyi-system/src/main/java/com/ruoyi/system/model/DrDisplacement.java
@@ -1,5 +1,6 @@
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;
@@ -38,24 +39,31 @@
    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 = "是否安置")
@@ -113,6 +121,8 @@
    @ApiModelProperty(value = "是否删除 0-否,1-是")
    @TableLogic
    private Boolean disabled;
    @ApiModelProperty(value = "结构")
    @TableField(exist = false)
    private String constructionTypes;
}