产权注销列表

http://**//business/propertyRightCancel/listByPage

请求参数

参数名
类型
描述
必填
cond
String
查询条件 ( 测绘编号或者协议编号)
必填
cancelStatus
Int
注销状态 1未注销 2已注销
必填
pageNo
Int
当前页码
必填
pageSize
Int
每页条数
必填

响应参数

参数名
类型
描述
必填
id
Int
注销ID
必填
measureNum
String
测绘编号
必填
protocolNum
String
协议编号
必填
rightPersonsVal
String
所属权利人名 多个以“,”分隔
必填
propertyRightCard
String
产权证号
必填
cancelStatus
Int
注销状态
必填
cancelDate
String
注销时间
必填
recordBy
String
录入人
必填
recordTime
String
录入时间
必填
remark
String
备注
必填

状态码

参数名
类型
描述
必填
res
Int
0 代表成功 其他代表失败
必填

请求示例

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

响应示例

{ "res": 0, "msg": "操作成功!", "data": { "pageNo": 1, "pageSize": 10, "total": 2, "totalPage": 1, "list": [ { "id": 2, "buildingId": 1, "measureNum": "m102", "protocolNum": "p102", "rightPersonId": 2, "propertyRightCard": "1111111", "cancelStatus": 2, "cancelStatusVal": "已注销", "cancelDate": "2020-06-22T18:21:32.000+0000", "recordBy": "肖战", "recordTime": null, "remark": null }, { "id": 1, "buildingId": 1, "measureNum": "m101", "protocolNum": "p101", "rightPersonId": 1, "propertyRightCard": "11111111111", "cancelStatus": 1, "cancelStatusVal": "未注销", "cancelDate": "2020-06-22T17:49:08.000+0000", "recordBy": "吴亦凡", "recordTime": null, "remark": null } ] } }