mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package com.panzhihua.common.model.dtos.community;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 实有房屋编辑请求参数
 */
@Data
@ApiModel("实有房屋编辑请求参数")
public class ComMngPopulationHouseEditAdminDTO implements Serializable {
 
    @ApiModelProperty("房屋id")
    private Long houseId;
    /**
     * 建筑面积
     */
    @ApiModelProperty("建筑面积")
    private BigDecimal constructArea;
    /**
     * 建筑用途
     */
    @ApiModelProperty(value = "建筑用途")
    private String constructPurpose;
    /**
     * 房屋编号
     */
    @ApiModelProperty(value = "房屋编号")
    private String code;
 
    /**
     * 房屋状态(1.自住 2.租住 3.其他)
     */
    @ApiModelProperty("房屋状态(1.自住 2.租住 3.其他)")
    private Integer status;
    /**
     * 房屋用途(1.住宅 2.公寓 3.宿舍 4.仓库 5.其他)
     */
    @ApiModelProperty("房屋用途(1.住宅 2.公寓 3.宿舍 4.仓库 5.其他)")
    private Integer purpose;
    /**
     * 管控状态(1.常规 2.关注 3.管控)
     */
    @ApiModelProperty(value = "管控状态(1.常规 2.关注 3.管控)")
    private Integer controlStatus;
 
}