feat(house): 添加房源类型字段支持
- 在 HouseInfo 实体类中新增 type 字段 - 在 HouseInfoParam 参数类中新增 type 查询字段 - 更新 HouseInfoMapper.xml 支持 type 字段查询条件 - 完善 Swagger 文档对房源类型字段的描述
This commit is contained in:
@@ -90,6 +90,9 @@ public class HouseInfo implements Serializable {
|
|||||||
@Schema(description = "办公室配套")
|
@Schema(description = "办公室配套")
|
||||||
private String supporting;
|
private String supporting;
|
||||||
|
|
||||||
|
@Schema(description = "产权信息")
|
||||||
|
private String property;
|
||||||
|
|
||||||
@Schema(description = "房源视频")
|
@Schema(description = "房源视频")
|
||||||
private String videoUrl;
|
private String videoUrl;
|
||||||
|
|
||||||
|
|||||||
@@ -179,4 +179,7 @@ public class HouseInfoParam extends BaseParam {
|
|||||||
@TableField(exist = false)
|
@TableField(exist = false)
|
||||||
private String premium;
|
private String premium;
|
||||||
|
|
||||||
|
@Schema(description = "产权信息")
|
||||||
|
private String property;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user