package com.panzhihua.common.model.dtos.community; import java.util.Date; import com.fasterxml.jackson.annotation.JsonFormat; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; /** * @program: springcloud_k8s_panzhihuazhihuishequ * @description: 分页查询房屋租售 * @author: huang.hongfa weixin hhf9596 qq 959656820 * @create: 2021-01-23 11:11 **/ @Data @ApiModel("分页查询房屋租售") public class PageComOpsHouseDTO { @ApiModelProperty(value = "分页-当前页数", example = "1") private Long pageNum; @ApiModelProperty(value = "分页-每页记录数", example = "10") private Long pageSize; @ApiModelProperty(value = "房屋所在小区id") private Long houseCommunityId; @ApiModelProperty(value = "房屋所在小区名字") private String houseCommunityName; @ApiModelProperty(value = "社区id", hidden = true) private Long communityId; @ApiModelProperty("查询开始时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date begin; @ApiModelProperty("查询结束时间") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") private Date end; @ApiModelProperty(value = "发布人id") private Long userId; @ApiModelProperty(value = "状态 0待审核 1已上架 2已驳回 3已下架 4待审核和已驳回 5已上架和已下架") private Integer status; @ApiModelProperty("小程序使用 1 表示查询我的") private Integer isMy; @ApiModelProperty(value = "朝向 0无1东2南3西4北5东南6东北7西南8西北9南北10东西") private Integer orient; @ApiModelProperty(value = "租售类型 1 出租 2 出售") private Integer houseType; @ApiModelProperty(value = "租房类型 1 整租 2 合租") private Integer rentType; @ApiModelProperty(value = "室数量,1 一室 2 二室 3 三室 4 四室以上") private Integer brn; @ApiModelProperty(value = "1 价格从低到高 2 价格从高到底 ") private Integer priceOrder; @ApiModelProperty(value = "发布人姓名") private String userName; @ApiModelProperty(value = "联系方式") private String mobile; private String areaCode; }