From 6b113a88e7b7b625405cc0b1d46efa22d46c71a2 Mon Sep 17 00:00:00 2001 From: linwe <872216996@qq.com> Date: Wed, 19 Jun 2024 10:57:15 +0800 Subject: [PATCH] 住户导入创建共用线程池和用户机构插入加锁 --- src/main/java/org/springblade/modules/house/vo/HouseRentalTenantVO.java | 45 +++++++++++++++++++++++++++++++++++++++++++-- 1 files changed, 43 insertions(+), 2 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 3d32da8..fc855df 100644 --- a/src/main/java/org/springblade/modules/house/vo/HouseRentalTenantVO.java +++ b/src/main/java/org/springblade/modules/house/vo/HouseRentalTenantVO.java @@ -26,15 +26,56 @@ */ 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 address; + private String communityCode; + + /** + * 街道名称 + */ + private String townStreetName; + + /** + * 社区名称 + */ + private String neiName; } -- Gitblit v1.9.3