文档
测试

地块列表

POST
http://**.**.com/promgr/ground/listByPage

请求参数

参数名
类型
描述
必填
groundName
String
地块名称
必填
groundNum
Int
地块编号
必填
pageNo
Int
当前页码
必填
pageSize
Int
每页条数
必填

响应参数

参数名
类型
描述
必填
groundName
String
地块名称
必填
groundNum
Int
地块编号
必填
nowBuildingTotalAreaForecast
Double
实测建筑面积(摸查)
必填
nowBaseTotalAreaForecast
Double
实测建基面积(摸查)
必填
nowBuildingTotalAreaMeasure
Double
实测建筑面积(测绘)
必填
nowBaseTotalAreaMeasure
Double
实测建基面积(测绘)
必填
nowBuildingTotalAreaSign
Double
实测建筑面积(签约)
必填
nowBaseTotalAreaSign
Double
实测建基面积(签约)
必填

状态码

参数名
类型
描述
必填
res
Int
0 代表查询成功 其他 代表错误
必填

请求案例

{ "pageNo": 1, "pageSize":10 }

响应示例

{ "res": 0, "msg": "操作成功!", "data": { "pageNo": 1, "pageSize": 10, "total": 3, "totalPage": 1, "list": [ { "id": 6, "projectId": null, "groundNum": 123, "groundName": "私人地块", "groundType": 10, "groundTypeVal": "私人土地", "nowBaseTotalAreaForecast": null, "nowBaseTotalAreaMeasure": null, "nowBaseTotalAreaSign": null, "nowBuildingTotalAreaForecast": null, "nowBuildingTotalAreaMeasure": null, "nowBuildingTotalAreaSign": null, "buildingCount": null, "buildingFamilyCount": null, "remark": null }, { "id": 5, "projectId": null, "groundNum": 123, "groundName": "国家地块", "groundType": 9, "groundTypeVal": "国家土地", "nowBaseTotalAreaForecast": null, "nowBaseTotalAreaMeasure": null, "nowBaseTotalAreaSign": null, "nowBuildingTotalAreaForecast": null, "nowBuildingTotalAreaMeasure": null, "nowBuildingTotalAreaSign": null, "buildingCount": null, "buildingFamilyCount": null, "remark": null }, { "id": 4, "projectId": null, "groundNum": 125, "groundName": "测试地块", "groundType": 9, "groundTypeVal": "国家土地", "nowBaseTotalAreaForecast": null, "nowBaseTotalAreaMeasure": null, "nowBaseTotalAreaSign": null, "nowBuildingTotalAreaForecast": null, "nowBuildingTotalAreaMeasure": null, "nowBuildingTotalAreaSign": null, "buildingCount": null, "buildingFamilyCount": null, "remark": null } ] } }