lin
2024-03-20 f2f0eb7d4101f99d251d6dbff47b8265509f5a1e
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
/*
 *      Copyright (c) 2018-2028, Chill Zhuang All rights reserved.
 *
 *  Redistribution and use in source and binary forms, with or without
 *  modification, are permitted provided that the following conditions are met:
 *
 *  Redistributions of source code must retain the above copyright notice,
 *  this list of conditions and the following disclaimer.
 *  Redistributions in binary form must reproduce the above copyright
 *  notice, this list of conditions and the following disclaimer in the
 *  documentation and/or other materials provided with the distribution.
 *  Neither the name of the dreamlu.net developer nor the names of its
 *  contributors may be used to endorse or promote products derived from
 *  this software without specific prior written permission.
 *  Author: Chill 庄骞 (smallchill@163.com)
 */
package org.springblade.modules.house.vo;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
import lombok.EqualsAndHashCode;
import org.springblade.modules.house.entity.HouseholdEntity;
 
import java.util.ArrayList;
import java.util.List;
 
/**
 * 住户 视图实体类
 *
 * @author BladeX
 * @since 2023-10-28
 */
@Data
@EqualsAndHashCode(callSuper = true)
public class HouseholdVO extends HouseholdEntity {
    private static final long serialVersionUID = 1L;
 
    /**
     * 角色类型名称
     */
    private String roleRelationName;
 
    @ApiModelProperty(value = "标签")
    private List<Integer> labelIdList;
 
    @ApiModelProperty(value = "标签类型:重点人员,关注人员")
    private Integer labelType;
 
    /**
     * 小区名称
     */
    private String aoiName;
 
    /**
     * 地址
     */
    private String address;
    /**
     * 街道名称
     */
    private String townStreetName;
    /**
     * 社区名称
     */
    private String neiName;
 
    /**
     * 网格名称
     */
    private String gridName;
 
    /**
     * 区域编号
     */
    private String regionCode;
 
    /**
     * 标签
     */
    private List<HouseholdLabelVO> householdLabelList = new ArrayList<>();
 
    @ApiModelProperty("开始时间")
    private String startTime;
 
    @ApiModelProperty("结束时间")
    private String endTime;
 
    @ApiModelProperty("用户id")
    private Long userId;
 
    /**
     * 来源
     */
    private Integer source;
 
    /**
     * 户籍地行政区划区县名称
     */
    private String residentAdName;
 
    /**
     * 户籍地行政区划省名称
     */
    private String residentProvinceAdName;
 
    /**
     * 户籍地行政区划省编号
     */
    private String residentProvinceAdCode;
 
    /**
     * 户籍地行政区划市名称
     */
    private String residentCityAdName;
 
    /**
     * 户籍地行政区划市编号
     */
    private String residentCityAdCode;
 
    /**
     * 籍贯地行政区划区县名称
     */
    private String nativePlaceAdName;
 
    /**
     * 籍贯地行政区划省名称
     */
    private String nativePlaceProvinceAdName;
 
    /**
     * 籍贯地行政区划省编号
     */
    private String nativePlaceProvinceAdCode;
 
    /**
     * 籍贯地行政区划市名称
     */
    private String nativePlaceCityAdName;
 
    /**
     * 籍贯地行政区划市编号
     */
    private String nativePlaceCityAdCode;
 
    private String building;
 
    private String unit;
 
    private String aoiCode;
 
    private String neiCode;
 
    /**
     * 标签id
     */
    private Integer labelId;
 
    //    标签父级id
    private Integer parentId;
 
    /**
     * 标签名称
     */
    private String labelName;
 
    /**
     * 查询key
     */
    private String searchKey;
 
    /**
     * 取值数
     */
    private Integer limit;
 
    @ApiModelProperty(value = "未成年", example = "")
    private Integer minors;
 
    /**
     * 角色名称
     */
//    private String roleName;
 
    // 角色名称
    @ApiModelProperty(value = "角色名称", example = "")
    private String roleName;
 
    // 社区编号
    @ApiModelProperty(value = "社区编号", example = "")
    private String communityCode;
 
}