From ea1613944a1cb49bd8ac59dc6d0efd6032c9ab8c Mon Sep 17 00:00:00 2001 From: zhongrj <646384940@qq.com> Date: Mon, 01 Apr 2024 14:40:44 +0800 Subject: [PATCH] e呼,用户,住户,房屋,报事报修,场所详情,从业人员等api,通用接口标注 --- src/main/java/org/springblade/modules/house/vo/HouseRentalTenantVO.java | 41 +++++++++++++++++++++++++++++++++++++++++ 1 files changed, 41 insertions(+), 0 deletions(-) diff --git a/src/main/java/org/springblade/modules/house/vo/HouseRentalTenantVO.java b/src/main/java/org/springblade/modules/house/vo/HouseRentalTenantVO.java index 6e970b0..5f242dd 100644 --- a/src/main/java/org/springblade/modules/house/vo/HouseRentalTenantVO.java +++ b/src/main/java/org/springblade/modules/house/vo/HouseRentalTenantVO.java @@ -27,4 +27,45 @@ 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; + + } -- Gitblit v1.9.3