linwe
2023-11-09 f9a3f18dc49f4d1317b8cb4f04d53d268bd90bbf
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
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;
 
 
}