罗元桥
2021-08-05 cc1098fc00a50cb1591d182f04bc37066ff0a9e2
springcloud_k8s_panzhihuazhihuishequ/service_community/src/main/java/com/panzhihua/service_community/model/dos/ComMngPopulationHouseUserDO.java
@@ -47,6 +47,11 @@
    private Integer relationId;
    /**
     * 人和房屋关系’ (1.是、0.否)
     */
    private Integer residence;
    /**
     * 入住开始时间
     */
    private Date startAt;
@@ -62,6 +67,32 @@
    @TableField(fill = FieldFill.INSERT)
    private Date createAt;
    /**
     * 更改时间
     */
    @TableField(fill = FieldFill.UPDATE)
    private Date updateAt;
    /**
     * 与户主关系(1.户主 2.配偶 3.子女 4.孙女 5.父母 6.其他)
     */
    public interface relation{
        int hz = 1;
        int po = 2;
        int zn = 3;
        int sn = 4;
        int fm = 5;
        int qt = 6;
    }
    /**
     * 人和房屋关系’ (1.自住2、租住)
     */
    public interface relationId{
        int zizhu = 1;
        int zuzhu = 2;
    }
    @Override
    public String toString() {
        return "ComMngPopulationHouseUserDO{" +
@@ -69,6 +100,7 @@
                ", populId=" + populId +
                ", houseId=" + houseId +
                ", createAt=" + createAt +
                ", updateAt=" + updateAt +
                "}";
    }
}