文档
测试

期初价格查询

POST
http://127.0.0.1:8181/staff/contract/compareStandardPrice

请求参数

参数名
类型
描述
必填
houseId
string
房屋id,示例:106
必填
beginPrice
string
期初价格,示例:100
必填
billType
string
示例:-1 (-1租金,-2物业管理费,1公用水费,2基本电费,3综合能耗分摊费,6空调维护费,7电梯费,9垃圾清运费)
必填

响应参数

参数名
类型
描述
必填
beginPrice
int
期初价格(元/月),示例:100000
必填
activityPrice
int
活动后价格,示例:100000
必填
contrastPrice
float
对比标准价,示例:106.82
必填
bottomPrice
int
底价,示例:38500
必填
description
object
描述,文字提示,不为空时提示
必填

说明 / 示例

**请求报文** ```json { "beginPrice": "100", "billType": "-1", "houseId":"106" } ``` --- **响应报文** ```json { "code": "0", "msg": "成功", "detail": null, "result": { "beginPrice": 22000.0000, "activityPrice": 22000.0000, "contrastPrice": -35.00, "bottomPrice": 38500.0000, "description": "期初价格已突破底价与活动折扣" }, "traceId": "d90c000a5e7d44ae918deee44b47f80d", "success": true } ```