huanghongfa
2021-05-19 c355cd9ca0e9c1cee4687867fa87e6fe65bd3a77
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.panzhihua.common.model.vos.user;
 
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptClass;
import com.panzhihua.common.model.helper.encrypt.EncryptDecryptField;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("实有人口详情房屋信息")
@EncryptDecryptClass
public class ComMngHouseVo {
 
    @ApiModelProperty("房屋id")
    private Long houseId;
 
    @ApiModelProperty("房屋地址")
    private String address;
 
    @ApiModelProperty("房屋状态")
    private Integer status;
 
}