文档
测试

分户列表

POST
http://**//promgr/family/listByPage

请求参数

参数名
类型
描述
必填
pageNo
int
页码
必填
pageSize
int
页大小
必填
cond
String
查询条件
必填

响应参数

参数名
类型
描述
必填
familyId
int
分户ID
必填
buildingId
int
建筑物ID
必填
measureNum
String
测绘编号
必填
protocolNum
String
协议编号
必填
rightPersonText
String
权利人姓名(多个以 “,” 分隔)
必填
community
String
社别
必填
address
String
建筑物地址
必填
ownershipPropertyVal
String
权属性质值
必填
isPapers
int
是否具有权属证件 1具有 2不具有
必填
rightTypeVal
String
权属证件类型值
必填
rightRegisterCertificateNum
String
权属证件登记证号
必填
groundText
String
地块名称, 用于展示,多个以 “,” 分隔
必填
rightPersonText
String
权利人
必填
rightPersonList
array
权利人列表
必填
id
int
人员id
必填
name
string
人员名
必填
houseBuildingAred
double
房屋建筑面积
必填
houseBaseAred
double
房屋建基面积
必填
houseBattlegroundAred
double
房屋占地面积
必填

请求示例

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

响应示例

{ "res": 0, "msg": "操作成功!", "data": { "pageNo": 1, "pageSize": 10, "total": 2, "totalPage": 1, "list": [ { "measureNum": "m10012", "protocolNum": "p10012", "community": null, "address": "深圳", "ownershipPropertyVal": "公房", "isPapers": 1, "rightTypeVal": "危房鉴定证明(属于危房的需提供)", "rightRegisterCertificateNum": null, "groundText": null, "rightPersonText": "测试1" }, { "measureNum": "m10012", "protocolNum": "p10012", "community": null, "address": "深圳", "ownershipPropertyVal": "公房", "isPapers": 1, "rightTypeVal": "危房鉴定证明(属于危房的需提供)", "rightRegisterCertificateNum": null, "groundText": null, "rightPersonText": "1233231312312,222222222222" } ] } }