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; }