diff --git a/src/main/java/com/entity/vo/MessagesVO.java b/src/main/java/com/entity/vo/MessagesVO.java new file mode 100644 index 0000000..efe85c2 --- /dev/null +++ b/src/main/java/com/entity/vo/MessagesVO.java @@ -0,0 +1,90 @@ +package com.entity.vo; + +import com.entity.MessagesEntity; + +import com.baomidou.mybatisplus.annotations.TableName; +import java.util.Date; +import org.springframework.format.annotation.DateTimeFormat; + +import com.fasterxml.jackson.annotation.JsonFormat; +import java.io.Serializable; + + +/** + * 留言板 + * 手机端接口返回实体辅助类 + * (主要作用去除一些不必要的字段) + * @author + * @email + */ +public class MessagesVO implements Serializable { + private static final long serialVersionUID = 1L; + + + /** + * 用户名 + */ + + private String username; + + /** + * 留言内容 + */ + + private String content; + + /** + * 回复内容 + */ + + private String reply; + + + /** + * 设置:用户名 + */ + + public void setUsername(String username) { + this.username = username; + } + + /** + * 获取:用户名 + */ + public String getUsername() { + return username; + } + + + /** + * 设置:留言内容 + */ + + public void setContent(String content) { + this.content = content; + } + + /** + * 获取:留言内容 + */ + public String getContent() { + return content; + } + + + /** + * 设置:回复内容 + */ + + public void setReply(String reply) { + this.reply = reply; + } + + /** + * 获取:回复内容 + */ + public String getReply() { + return reply; + } + +} diff --git a/src/main/java/com/entity/vo/NewsVO.java b/src/main/java/com/entity/vo/NewsVO.java new file mode 100644 index 0000000..e50e940 --- /dev/null +++ b/src/main/java/com/entity/vo/NewsVO.java @@ -0,0 +1,90 @@ +package com.entity.vo; + +import com.entity.NewsEntity; + +import com.baomidou.mybatisplus.annotations.TableName; +import java.util.Date; +import org.springframework.format.annotation.DateTimeFormat; + +import com.fasterxml.jackson.annotation.JsonFormat; +import java.io.Serializable; + + +/** + * 公告信息 + * 手机端接口返回实体辅助类 + * (主要作用去除一些不必要的字段) + * @author + * @email + */ +public class NewsVO implements Serializable { + private static final long serialVersionUID = 1L; + + + /** + * 简介 + */ + + private String introduction; + + /** + * 图片 + */ + + private String picture; + + /** + * 内容 + */ + + private String content; + + + /** + * 设置:简介 + */ + + public void setIntroduction(String introduction) { + this.introduction = introduction; + } + + /** + * 获取:简介 + */ + public String getIntroduction() { + return introduction; + } + + + /** + * 设置:图片 + */ + + public void setPicture(String picture) { + this.picture = picture; + } + + /** + * 获取:图片 + */ + public String getPicture() { + return picture; + } + + + /** + * 设置:内容 + */ + + public void setContent(String content) { + this.content = content; + } + + /** + * 获取:内容 + */ + public String getContent() { + return content; + } + +} diff --git a/src/main/resources/front.front/pages/fangwuleixing/add.html b/src/main/resources/front.front/pages/fangwuleixing/add.html new file mode 100644 index 0000000..81dadc3 --- /dev/null +++ b/src/main/resources/front.front/pages/fangwuleixing/add.html @@ -0,0 +1,296 @@ + + + + + + + 注册 + + + + + + + + + + + + + + +
+ + + + + +
+ +
+ +
+ +
+ +
+
+ + +
+
+ + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangwuleixing/detail.html b/src/main/resources/front.front/pages/fangwuleixing/detail.html new file mode 100644 index 0000000..2d55efc --- /dev/null +++ b/src/main/resources/front.front/pages/fangwuleixing/detail.html @@ -0,0 +1,368 @@ + + + + + + + + 首页 + + + + + + + + + + + +
+ +
+
+ + 首页 + {{title}} + + + +
+
+
+ + + + + +
+
+

{{title}}

+ + + + +
+ 房屋类型: + + {{detail.fangwuleixing}} + +
+ + + + + +
+
+ + + + +
+
+ +
    + + + + + + + + + +
+ +
+ + + + + + + + + +
+
+
+
+ +
+ + + + + + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangwuleixing/list.html b/src/main/resources/front.front/pages/fangwuleixing/list.html new file mode 100644 index 0000000..0ce1893 --- /dev/null +++ b/src/main/resources/front.front/pages/fangwuleixing/list.html @@ -0,0 +1,426 @@ + + + + +房屋类型 + + + + + + + + + + + + + +
+ +
+
+
+ 房屋类型您现在的位置:房屋类型 +
+
+
+
房屋类型
+ +
+ + +
+ +
+
+
+
+
{{item.price}} RMB
+
+
+
+
+
+
+
+ + +
+ + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangwupingjia/add.html b/src/main/resources/front.front/pages/fangwupingjia/add.html new file mode 100644 index 0000000..8f8424c --- /dev/null +++ b/src/main/resources/front.front/pages/fangwupingjia/add.html @@ -0,0 +1,412 @@ + + + + + + + 注册 + + + + + + + + + + + + + + +
+ + + + + +
+ +
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ + +
+
+ + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangwupingjia/detail.html b/src/main/resources/front.front/pages/fangwupingjia/detail.html new file mode 100644 index 0000000..372c78f --- /dev/null +++ b/src/main/resources/front.front/pages/fangwupingjia/detail.html @@ -0,0 +1,422 @@ + + + + + + + + 首页 + + + + + + + + + + + +
+ +
+
+ + 首页 + {{title}} + + + +
+
+
+ + + + + +
+
+

{{title}}

+ + + + +
+ 合同编号: + + {{detail.hetongbianhao}} + +
+
+ 房屋名称: + + {{detail.fangwumingcheng}} + +
+
+ 房屋类型: + + {{detail.fangwuleixing}} + +
+
+ 小区: + + {{detail.xiaoqu}} + +
+
+ 评分: + + {{detail.pingfen}} + +
+
+ 评价内容: + + {{detail.pingjianeirong}} + +
+
+ 评价日期: + + {{detail.pingjiariqi}} + +
+
+ 房主账号: + + {{detail.fangzhuzhanghao}} + +
+
+ 用户名: + + {{detail.yonghuming}} + +
+
+ 联系电话: + + {{detail.lianxidianhua}} + +
+ + + + + +
+
+ + + + +
+
+ +
    + + + + + + + + + +
+ +
+ + + + + + + + + +
+
+
+
+ +
+ + + + + + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangwupingjia/list.html b/src/main/resources/front.front/pages/fangwupingjia/list.html new file mode 100644 index 0000000..9a6e3e3 --- /dev/null +++ b/src/main/resources/front.front/pages/fangwupingjia/list.html @@ -0,0 +1,448 @@ + + + + +房屋评价 + + + + + + + + + + + + + +
+ +
+
+
+ 房屋评价您现在的位置:房屋评价 +
+
+
+
房屋名称
+ +
+
+
评分
+ +
+
+
房主账号
+ +
+
+
用户名
+ +
+ + +
+ +
+
+
+
+
{{item.price}} RMB
+
+
+
+
+
+
+
+ + +
+ + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangwuxinxi/add.html b/src/main/resources/front.front/pages/fangwuxinxi/add.html new file mode 100644 index 0000000..ff37dd1 --- /dev/null +++ b/src/main/resources/front.front/pages/fangwuxinxi/add.html @@ -0,0 +1,639 @@ + + + + + + + 注册 + + + + + + + + + + + + + + +
+ + + + + +
+ +
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ +
+ +
+ +
+
+ +
+
+ + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangwuxinxi/detail.html b/src/main/resources/front.front/pages/fangwuxinxi/detail.html new file mode 100644 index 0000000..ac81c78 --- /dev/null +++ b/src/main/resources/front.front/pages/fangwuxinxi/detail.html @@ -0,0 +1,556 @@ + + + + + + + + 首页 + + + + + + + + + + + +
+ +
+ +
+
+ + + + + +
+
+

{{title}}

+ + + + +
+ 房屋类型: + + {{detail.fangwuleixing}} + +
+
+ 租赁方式: + + {{detail.zulinfangshi}} + +
+
+ 朝向楼层: + + {{detail.chaoxianglouceng}} + +
+
+ 面积: + + {{detail.mianji}} + +
+
+ 房屋状态: + + {{detail.fangwuzhuangtai}} + +
+
+ 小区: + + {{detail.xiaoqu}} + +
+
+ 详细地址: + + {{detail.xiangxidizhi}} + +
+
+ 月租价格: + + {{detail.yuezujiage}} + +
+
+ 押金: + + {{detail.yajin}} + +
+
+ 房屋设施: + + {{detail.fangwusheshi}} + +
+
+ 发布日期: + + {{detail.faburiqi}} + +
+
+ 房主账号: + + {{detail.fangzhuzhanghao}} + +
+
+ 房主姓名: + + {{detail.fangzhuxingming}} + +
+ + + + + +
+ + + + + + +
+
+
+ + + + +
+
+ +
    + +
  • 房屋详情
  • + + + +
  • 评论
  • + + + + + +
+ +
+ +
+
+
+ + + +
+
+
+
+ +
+ +
+
+
+
+ + +
+
+
+
+
+
+ + 用户:{{item.userid}} +
+
+ + {{item.content}} + +
+
+ + 回复:{{item.reply}} + +
+
+
+
+
+
+ + + + + +
+
+
+
+ +
+ + + + + + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangwuxinxi/list.html b/src/main/resources/front.front/pages/fangwuxinxi/list.html new file mode 100644 index 0000000..2bacffa --- /dev/null +++ b/src/main/resources/front.front/pages/fangwuxinxi/list.html @@ -0,0 +1,486 @@ + + + + +房屋信息 + + + + + + + + + + + + + +
+ +
+
+
+ + +
+
+ 房屋信息您现在的位置:房屋信息 +
+
+
+
房屋名称
+ +
+
+
房屋状态
+ +
+
+
小区
+ +
+ + +
+ +
+
+ +
+ +
+
+
+
+ +
+
{{item.price}} RMB
+
{{item.fangwumingcheng}}
+
+
+
+
+
+
+
+ + +
+ + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangzhu/add.html b/src/main/resources/front.front/pages/fangzhu/add.html new file mode 100644 index 0000000..539a9ce --- /dev/null +++ b/src/main/resources/front.front/pages/fangzhu/add.html @@ -0,0 +1,453 @@ + + + + + + + 注册 + + + + + + + + + + + + + + +
+ + + + + +
+ +
+ +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+
+ + +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ + +
+
+ + +
+
+
+
+
+ + + + + + + + + + + + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangzhu/center.html b/src/main/resources/front.front/pages/fangzhu/center.html new file mode 100644 index 0000000..e9ad376 --- /dev/null +++ b/src/main/resources/front.front/pages/fangzhu/center.html @@ -0,0 +1,541 @@ + + + + + + + + 个人中心 + + + + + + + + + + + +
+ + + + + + + +
+ USER / CENTER个人中心 +
+ + +
+ +
+ +
+ + +
+
+ + +
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+ +
+
+ + +
+
+ +
+
+ +
+ +
+ + + + + + + + + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangzhu/detail.html b/src/main/resources/front.front/pages/fangzhu/detail.html new file mode 100644 index 0000000..72e354e --- /dev/null +++ b/src/main/resources/front.front/pages/fangzhu/detail.html @@ -0,0 +1,392 @@ + + + + + + + + 首页 + + + + + + + + + + + +
+ +
+
+ + 首页 + {{title}} + + + +
+
+
+ + + + + +
+
+

{{title}}

+ + + + +
+ 房主账号: + + {{detail.fangzhuzhanghao}} + +
+
+ 房主姓名: + + {{detail.fangzhuxingming}} + +
+
+ 性别: + + {{detail.xingbie}} + +
+
+ 手机: + + {{detail.shouji}} + +
+
+ 身份证: + + {{detail.shenfenzheng}} + +
+ + + + + +
+
+ + + + +
+
+ +
    + + + + + + + + + +
+ +
+ + + + + + + + + +
+
+
+
+ +
+ + + + + + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangzhu/list.html b/src/main/resources/front.front/pages/fangzhu/list.html new file mode 100644 index 0000000..57ee236 --- /dev/null +++ b/src/main/resources/front.front/pages/fangzhu/list.html @@ -0,0 +1,433 @@ + + + + +房主 + + + + + + + + + + + + + +
+ +
+
+
+ 房主您现在的位置:房主 +
+
+
+
房主账号
+ +
+
+
房主姓名
+ +
+ + +
+ +
+
+
+
+
{{item.price}} RMB
+
+
+
+
+
+
+
+ + +
+ + + + + + + + + + diff --git a/src/main/resources/front.front/pages/fangzhu/register.html b/src/main/resources/front.front/pages/fangzhu/register.html new file mode 100644 index 0000000..8e7380f --- /dev/null +++ b/src/main/resources/front.front/pages/fangzhu/register.html @@ -0,0 +1,172 @@ + + + + + + 注册 + + + + + + +
+
+

+

房主注册

+
+ + +
+
+ + +
+
+ + +
+
+ + +
+
+ + +
+ +

已有账号登录

+
+
+ + + + + + + + + + + + + + +