From c766f2879d90e3ca022906907b8f3addc05ece7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Fri, 9 Jan 2026 19:08:48 +0800 Subject: [PATCH] =?UTF-8?q?feat(house):=20=E6=B7=BB=E5=8A=A0=E7=A7=9F?= =?UTF-8?q?=E9=87=91=E5=92=8C=E9=9D=A2=E7=A7=AF=E5=8D=95=E4=BD=8D=E5=AD=97?= =?UTF-8?q?=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 为租金字段添加rentUnit单位属性 - 为月租金字段添加monthlyRentUnit单位属性 - 为面积字段添加extentUnit单位属性 - 更新实体类HouseInfo的数据结构定义 --- src/main/java/com/gxwebsoft/house/entity/HouseInfo.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/main/java/com/gxwebsoft/house/entity/HouseInfo.java b/src/main/java/com/gxwebsoft/house/entity/HouseInfo.java index ae0a970..d26ea14 100644 --- a/src/main/java/com/gxwebsoft/house/entity/HouseInfo.java +++ b/src/main/java/com/gxwebsoft/house/entity/HouseInfo.java @@ -48,9 +48,15 @@ public class HouseInfo implements Serializable { @Schema(description = "租金") private BigDecimal rent; + @Schema(description = "租金单位") + private String rentUnit; + @Schema(description = "月租金") private BigDecimal monthlyRent; + @Schema(description = "租金单位") + private String monthlyRentUnit; + @Schema(description = "佣金") private BigDecimal commission; @@ -60,6 +66,9 @@ public class HouseInfo implements Serializable { @Schema(description = "面积") private String extent; + @Schema(description = "面积") + private String extentUnit; + @Schema(description = "楼层") private String floor;