feat(house): 添加房源类型字段支持

- 在 HouseInfo 实体类中新增 type 字段
- 在 HouseInfoParam 参数类中新增 type 查询字段
- 更新 HouseInfoMapper.xml 支持 type 字段查询条件
- 完善 Swagger 文档对房源类型字段的描述
This commit is contained in:
2025-12-10 16:50:02 +08:00
parent 464b3b60a6
commit 453bc5387e
2 changed files with 6 additions and 0 deletions

View File

@@ -90,6 +90,9 @@ public class HouseInfo implements Serializable {
@Schema(description = "办公室配套")
private String supporting;
@Schema(description = "产权信息")
private String property;
@Schema(description = "房源视频")
private String videoUrl;

View File

@@ -179,4 +179,7 @@ public class HouseInfoParam extends BaseParam {
@TableField(exist = false)
private String premium;
@Schema(description = "产权信息")
private String property;
}