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
package com.panzhihua.common.model.dtos.community;
 
import java.io.Serializable;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * 实有人口编辑请求参数
 */
@Data
@ApiModel("实有人口房屋编辑请求参数")
public class ComMngPopulationHouseEditDTO implements Serializable {
 
    @ApiModelProperty("实有房屋id")
    private Long id;
 
    @ApiModelProperty(value = "是否是居住地(1.是 0.否)")
    private Integer isResidence;
 
    @ApiModelProperty("与户主关系")
    private Integer relation;
 
    /**
     * 是否是居住地(1.是 0.否)
     */
    public interface isResidence {
        int yes = 1;
        int no = 0;
    }
 
}