企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ## 列表 ~~~[api] get:/community <<< success { "code": 0, "data": { "data": [ { "id": 6, "name": "456789",//小区名 "source": 0,//小区来源 0 管理 1 销售 "create_time": "2018-06-02 11:47:29",//添加时间 "landmark": "内光华",//所属地标 "county": "青羊区",//区名 "city": "成都市",//市名 "province": "四川省",//省名 "sale": null,//添加的销售名 "sale_phone": null,//添加的销售手机号 "num": 0//小区下的房源数 } ], "currentPage": 1, "pageNumber": 10, "count": 1 } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 列表分页 ~~~[api] get:/community/pag *int:currentPage=1#当前页 *int:pageNumber=10#页码 <<< success { "code": 0, "data": { "data": [ { "id": 6, "name": "456789",//小区名 "source": 0,//小区来源 0 管理 1 销售 "create_time": "2018-06-02 11:47:29",//添加时间 "landmark": "内光华",//所属地标 "county": "青羊区",//区名 "city": "成都市",//市名 "province": "四川省",//省名 "sale": null,//添加的销售名 "sale_phone": null,//添加的销售手机号 "num": 0//小区下的房源数 } ] } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 搜索 ~~~[api] get:/community/search *string:search=搜索内容#缴费名称 <<< success { "code": 0, "data": { "data": [ { "id": 6, "name": "456789",//小区名 "source": 0,//小区来源 0 管理 1 销售 "create_time": "2018-06-02 11:47:29",//添加时间 "landmark": "内光华",//所属地标 "county": "青羊区",//区名 "city": "成都市",//市名 "province": "四川省",//省名 "sale": null,//添加的销售名 "sale_phone": null,//添加的销售手机号 "num": 0//小区下的房源数 } ] } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 新增查询 ~~~[api] get:/community/read <<< success { "code": 0, "data": [ { "id": 1, "name": "内光华"//地标名 } ] } ~~~ ## 新增保存 ~~~[api] post:/community/save *string:name=小区#小区名 *int:county_id=1#区id *int:landmark_id=1#地标id *string:address=地址#详细地址 *string:longitude=2.2#所在经度 *string:latitude=23.3#所在纬度 <<< success { "code":0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 修改查询 ~~~[api] get:/community/edit *int:id=1#列表 id <<< success { "code": 0, "data": { "data": { "id": 1, "name": "光华中心", "address": "光华北三路", "longitude": "103.970194", "latitude": "30.675829", "landmark_id": 1, "county_id": 1, "city_id": 1, "province_id": 1 } } } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 修改保存 ~~~[api] post:/community/update *int:id=1#列表 id *string:name=小区#小区名 *int:county_id=1#区id *int:landmark_id=1#地标id *string:address=地址#详细地址 *string:longitude=2.2#所在经度 *string:latitude=23.3#所在纬度 <<< success { "code":0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~ ## 删除 ~~~[api] post:/community/delete *int:id=1#列表 id <<< success { "code":0 } <<< error { "code": -1, "msg": "参数错误!" } ~~~