💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
[TOC] ## 列表 * 请求地址: `/community` * 请求方式: get * 请求参数: 无 * 成功返回: ```json { "code": 0, "data": { "data": [ { "id": 1, "name": "光华中心",//小区名 "source": 0,//来源 0 管理员添加 1 销售添加 "create_time": "2017-12-13 14:34:10",//添加时间 "landmark": "内光华",//地标名 "county": "青羊区",//区名 "city": "成都市",//市名 "province": "四川省",//省名 "sale": null,//添加销售的姓名 "sale_phone": null,//添加的销售的手机号 "num": 0//小区下的房源数量 } ], "currentPage": 1,//当前页 "pageNumber": 10,//页码 "count": 1//总条数 } } ``` * 失败返回: ```json { "code": -1, "msg": "参数错误!" } ``` ## 分页 * 请求地址: `/community/pag` * 请求方式: get * 请求参数: | 字段名 | 字段类型 | 字段长度 | 必填 | 字段说明 | | --- | --- | --- | --- | --- | | `currentPage` | int | 11 | `是` | 当前页 | | `pageNumber` | int | 11 | `是` | 页码 | * 成功返回: ```json { "code": 0, "data": { "data": [ { "id": 1, "name": "光华中心",//小区名 "source": 0,//来源 0 管理员添加 1 销售添加 "create_time": "2017-12-13 14:34:10",//添加时间 "landmark": "内光华",//地标名 "county": "青羊区",//区名 "city": "成都市",//市名 "province": "四川省",//省名 "sale": null,//添加销售的姓名 "sale_phone": null,//添加的销售的手机号 "num": 0//小区下的房源数量 } ] } } ``` * 失败返回: ```json { "code": -1, "msg": "参数错误!" } ``` ## 搜索 * 请求地址: `/community/search` * 请求方式: get * 请求参数: | 字段名 | 字段类型 | 字段长度 | 必填 | 字段说明 | | --- | --- | --- | --- | --- | | `search` | string | 2-200 | `是` | 搜索内容(小区名称) | * 成功返回: ```json { "code": 0, "data": { "data": [] } } ``` * 失败返回: ```json { "code": -1, "msg": "参数错误!" } ``` ## 新增查询(查询所有地标) * 请求地址: `/community/read` * 请求方式: get * 请求参数: 无 * 成功返回: ```json { "code": 0, "data": [ { "id": 1, "name": "内光华" } ] } ``` * 失败返回: ```json { "code": -1, "msg": "参数错误!" } ``` ## 新增保存 * 请求地址: `/community/save` * 请求方式: post * 请求参数: | 字段名 | 字段类型 | 字段长度 | 必填 | 字段说明 | | --- | --- | --- | --- | --- | | `name` | string | 2-32 | `是` | 小区名称 | | `county_id` | int | 11 | `是` | 区id | | `landmark_id` | int | 11 | `是` | 地标id | | `address` | string | 2-160 | `是` | 详细地址 | | `longitude` | string | 2-32 | 是 | 所在经度 | | `latitude` | string | 2-32 | 是 | 所在纬度 | * 成功返回: ```json { "code": 0 } ``` * 失败返回: ```json { "code": -1, "msg": "参数错误!" } ``` ## 修改查询 * 请求地址: `/community/edit` * 请求方式: get * 请求参数: | 字段名 | 字段类型 | 字段长度 | 必填 | 字段说明 | | --- | --- | --- | --- | --- | | `id` | int | 11 | `是` | id | * 成功返回: ```json { "code": 0, "data": { "data": [] } } ``` * 失败返回: ```json { "code": -1, "msg": "参数错误!" } ``` ## 修改保存 * 请求地址: `/community/update` * 请求方式: post * 请求参数: | 字段名 | 字段类型 | 字段长度 | 必填 | 字段说明 | | --- | --- | --- | --- | --- | | `id` | int | 11 | `是` | id | | `name` | string | 2-32 | `是` | 小区名称 | | `county_id` | int | 11 | `是` | 区id | | `landmark_id` | int | 11 | `是` | 地标id | | `address` | string | 2-160 | `是` | 详细地址 | | `longitude` | string | 2-32 | 是 | 所在经度 | | `latitude` | string | 2-32 | 是 | 所在纬度 | * 成功返回: ```json { "code": 0 } ``` * 失败返回: ```json { "code": -1, "msg": "参数错误!" } ``` ## 删除 * 请求地址: `/community/delete` * 请求方式: post * 请求参数: | 字段名 | 字段类型 | 字段长度 | 必填 | 字段说明 | | --- | --- | --- | --- | --- | | `id` | int | 11 | `是` | id | * 成功返回: ```json { "code": 0 } ``` * 失败返回: ```json { "code": -1, "msg": "参数错误!" } ```