linwe
2024-05-29 c10d6358b9f014375a13821465bc978d0c0da22e
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
package org.springblade.modules.house.vo;
 
import lombok.Data;
import org.springblade.modules.house.entity.HouseRentalEntity;
import org.springblade.modules.house.entity.HouseTenantEntity;
 
import java.util.List;
 
/**
 * 房屋租户VO
 */
@Data
public class HouseRentalTenantVO extends HouseRentalEntity {
 
    //租户名
    private String tenantName;
 
    //房屋名
    private String houseName;
 
    //电话
    private String phone;
 
    /**
     * 租房时间类型  1:长期  2:中期  3:短期
     */
    private Integer dldType;
 
 
 
    /**
     * 拼接地址
     */
    private String address;
 
    /**
     * 是否到期 0:未到期  1:已到期  2:已终止
     */
    private Integer status;
 
    /**
     * 区域编号
     */
    private String regionCode;
 
    /**
     * 开始时间
     */
    private String startTime;
 
    /**
     * 结束时间
     */
    private String endTime;
 
    private  String neiCode;
 
    private Long userId;
 
    /**
     * 角色名称
     */
    private String roleName;
 
    /**
     * 社区编号
     */
    private String communityCode;
 
 
}