| | |
| | | package com.panzhihua.common.model.vos.user; |
| | | |
| | | import com.fasterxml.jackson.databind.annotation.JsonSerialize; |
| | | import com.fasterxml.jackson.databind.ser.std.ToStringSerializer; |
| | | import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass; |
| | | import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | public class ComMngHouseVo { |
| | | |
| | | @ApiModelProperty("房屋id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long houseId; |
| | | |
| | | @ApiModelProperty("人口id") |
| | | @JsonSerialize(using = ToStringSerializer.class) |
| | | private Long populId; |
| | | |
| | | @ApiModelProperty("人和房屋关系") |
| | | private Integer relationId; |
| | | |
| | | @ApiModelProperty("与户主关系") |
| | | private Integer relation; |
| | | |
| | | @ApiModelProperty("房屋地址") |
| | | private String address; |
| | |
| | | @ApiModelProperty("房屋状态") |
| | | private Integer status; |
| | | |
| | | @ApiModelProperty("是否居住地 1.是 0.否") |
| | | private Integer residence; |
| | | |
| | | } |