forked from rongchao/epmet-cloud-rizhao
30 changed files with 439 additions and 450 deletions
@ -0,0 +1,29 @@ |
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* desc: 楼宇列表查询条件 |
|||
* |
|||
* @return |
|||
* @author LiuJanJun |
|||
* @date 2022/4/13 2:45 下午 |
|||
*/ |
|||
@Data |
|||
public class IcBuildingListFormDTO extends PageFormDTO { |
|||
|
|||
private static final long serialVersionUID = -7536532648656861790L; |
|||
/** |
|||
* 小区ID |
|||
*/ |
|||
private String neighborHoodId; |
|||
/** |
|||
* 房主姓名 |
|||
*/ |
|||
private String ownerName; |
|||
/** |
|||
* 房主电话 |
|||
*/ |
|||
private String ownerPhone; |
|||
} |
@ -0,0 +1,69 @@ |
|||
package com.epmet.dto.form;/** |
|||
* Created by 11 on 2020/3/19. |
|||
*/ |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
/** |
|||
* @Description 小区房屋列表查询条件 |
|||
* @ClassName ListCustomerGridFormDTO |
|||
* @Author wangc |
|||
* @date 2020.03.19 15:00 |
|||
*/ |
|||
@Data |
|||
public class IcHouseListFormDTO extends PageFormDTO { |
|||
|
|||
private static final long serialVersionUID = -1L; |
|||
|
|||
/** |
|||
* 组织类别 |
|||
*/ |
|||
private String level; |
|||
|
|||
private String id; |
|||
|
|||
|
|||
/** |
|||
* 组织ID |
|||
*/ |
|||
private String agencyId; |
|||
private String pids; |
|||
private String gridId; |
|||
|
|||
/** |
|||
* 小区名字 |
|||
*/ |
|||
private String neighborHoodName; |
|||
/** |
|||
* 楼栋名字 |
|||
*/ |
|||
private String buildingName; |
|||
/** |
|||
* 房主姓名 |
|||
*/ |
|||
private String ownerName; |
|||
/** |
|||
* 房主电话 |
|||
*/ |
|||
private String ownerPhone; |
|||
/** |
|||
* 房屋状态 【1:出租 0:自住 2:闲置】 |
|||
*/ |
|||
private String rentFlag; |
|||
/** |
|||
* 楼栋ID |
|||
*/ |
|||
private String buildingId; |
|||
/** |
|||
* 小区ID |
|||
*/ |
|||
private String neighborHoodId; |
|||
|
|||
/** |
|||
* 搜索关键词,社区查询,搜索输入的关键词 |
|||
*/ |
|||
private String keyword; |
|||
|
|||
|
|||
} |
@ -0,0 +1,63 @@ |
|||
/** |
|||
* Copyright 2018 人人开源 https://www.renren.io
|
|||
* <p> |
|||
* This program is free software: you can redistribute it and/or modify |
|||
* it under the terms of the GNU General Public License as published by |
|||
* the Free Software Foundation, either version 3 of the License, or |
|||
* (at your option) any later version. |
|||
* <p> |
|||
* This program is distributed in the hope that it will be useful, |
|||
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|||
* GNU General Public License for more details. |
|||
* <p> |
|||
* You should have received a copy of the GNU General Public License |
|||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
*/ |
|||
|
|||
package com.epmet.dto.form; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
|
|||
|
|||
@Data |
|||
public class IcNeighborHoodListFormDTO extends PageFormDTO { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 组织类别 |
|||
*/ |
|||
@NotBlank(message = "组织类别不能为空") |
|||
private String level; |
|||
|
|||
/** |
|||
* orgId 跟level配套使用 |
|||
*/ |
|||
@NotBlank(message = "组织Id不能为空") |
|||
private String id; |
|||
|
|||
|
|||
/** |
|||
* 组织ID |
|||
*/ |
|||
private String agencyId; |
|||
private String pids; |
|||
private String gridId; |
|||
|
|||
|
|||
/** |
|||
* 房主姓名 |
|||
*/ |
|||
private String ownerName; |
|||
/** |
|||
* 房主电话 |
|||
*/ |
|||
private String ownerPhone; |
|||
|
|||
|
|||
|
|||
} |
@ -1,89 +0,0 @@ |
|||
package com.epmet.dto.form;/** |
|||
* Created by 11 on 2020/3/19. |
|||
*/ |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.Min; |
|||
import javax.validation.constraints.NotBlank; |
|||
import javax.validation.constraints.Pattern; |
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description 陌生人导览查询附近网格传参定义 |
|||
* @ClassName ListCustomerGridFormDTO |
|||
* @Author wangc |
|||
* @date 2020.03.19 15:00 |
|||
*/ |
|||
@Data |
|||
public class ListIcNeighborHoodFormDTO implements Serializable{ |
|||
|
|||
private static final long serialVersionUID = -1L; |
|||
|
|||
|
|||
/** |
|||
* 当前页 |
|||
* */ |
|||
private Integer pageNo = 1; |
|||
|
|||
/** |
|||
* 每页显示数量 |
|||
* */ |
|||
private Integer pageSize = 20; |
|||
|
|||
/** |
|||
* 组织类别 |
|||
*/ |
|||
private String level ; |
|||
|
|||
private String id; |
|||
|
|||
/** |
|||
* 组织ID |
|||
*/ |
|||
// private String agencyId;
|
|||
/** |
|||
* 网格ID |
|||
*/ |
|||
// private String gridId;
|
|||
/** |
|||
* 小区名字 |
|||
*/ |
|||
// private String neighborHoodName;
|
|||
/** |
|||
* 楼栋名字 |
|||
*/ |
|||
// private String buildingName;
|
|||
/** |
|||
* 房主姓名 |
|||
*/ |
|||
private String ownerName; |
|||
/** |
|||
* 房主电话 |
|||
*/ |
|||
private String ownerPhone; |
|||
/** |
|||
* 房屋状态 【1:出租 0:自住 2:闲置】 |
|||
*/ |
|||
private String rentFlag; |
|||
/** |
|||
* 数据类型【小区:neighbourHood,楼栋:building,房屋:house】 |
|||
*/ |
|||
// @Pattern(regexp = "^(neighbourHood|building|house)?$",message = "数据类型选择错误")
|
|||
// private String dataType;
|
|||
/** |
|||
* 楼栋ID |
|||
*/ |
|||
private String buildingId; |
|||
/** |
|||
* 小区ID |
|||
*/ |
|||
private String neighborHoodId; |
|||
|
|||
/** |
|||
* 搜索关键词,社区查询,搜索输入的关键词 |
|||
*/ |
|||
private String keyword; |
|||
|
|||
|
|||
} |
@ -1,17 +0,0 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Description |
|||
* @Author zhaoqifeng |
|||
* @Date 2021/10/25 16:58 |
|||
*/ |
|||
@Data |
|||
public class HouseResultDTO implements Serializable { |
|||
private static final long serialVersionUID = 8054109017922254586L; |
|||
private String houseId; |
|||
private String houseName; |
|||
} |
@ -0,0 +1,35 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import com.epmet.commons.tools.dto.form.PageFormDTO; |
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
/** |
|||
* desc:楼宇列表结果类 |
|||
* |
|||
* @author: LiuJanJun |
|||
* @date: 2022/4/13 2:28 下午 |
|||
* @version: 1.0 |
|||
*/ |
|||
@NoArgsConstructor |
|||
@Data |
|||
public class IcBuildingListResultDTO extends PageFormDTO { |
|||
|
|||
private static final long serialVersionUID = -8277921228438123299L; |
|||
private String gridName; |
|||
private Integer totalHouseNum; |
|||
private String latitude; |
|||
private String agencyId; |
|||
private Integer sort; |
|||
private String agencyName; |
|||
private String buildingId; |
|||
private String buildingName; |
|||
private String buildingTypeKey; |
|||
private String neighborHoodId; |
|||
private String neighborHoodName; |
|||
private Integer totalFloorNum; |
|||
private String gridId; |
|||
private Integer totalUnitNum; |
|||
private String longitude; |
|||
private String buildingType; |
|||
} |
Binary file not shown.
Binary file not shown.
Loading…
Reference in new issue