Commit 60a098562ed7683127085aee81eb50875d22ceb0
1 parent
da5bf474
Exists in
v1.2
and in
2 other branches
图标管理
Showing
1 changed file
with
58 additions
and
0 deletions
Show diff stats
README.md
| ... | ... | @@ -20,6 +20,9 @@ |
| 20 | 20 | 1. [创建提醒](#dealymessage-create-post) |
| 21 | 21 | 1. [删除提醒](#dealymessage-remove-post) |
| 22 | 22 | 1. [增加访问日志](#eventlog-post) |
| 23 | +1. [图标管理 - 返回图标基础信息](#icon-info-get) | |
| 24 | +1. [图标管理 - 增加或修改图标信息](#icon-update-post) | |
| 25 | +1. [图标管理 - 所有图标](#icon-all-get) | |
| 23 | 26 | 1. [问券调查 - 增加调查](#investigation-save-post) |
| 24 | 27 | 1. [问券调查 - 查询所有问券调查](#investigation-list-get) |
| 25 | 28 | 1. [设备管理 - 查询设备信息](#iteminfo-get) |
| ... | ... | @@ -258,6 +261,61 @@ |
| 258 | 261 | |
| 259 | 262 | |
| 260 | 263 | |
| 264 | +<a name="icon-info-get"></a> | |
| 265 | + | |
| 266 | +#### /Icon/Info (GET) | |
| 267 | + | |
| 268 | + | |
| 269 | +图标管理 - 返回图标基础信息 | |
| 270 | + | |
| 271 | +| Param Name | Example | Data Type | Description | Required? | | |
| 272 | +|-----|-----|-----|-----|-----| | |
| 273 | +| id | 5dfb03070a9ac17ac7a82054 | string | 图标id | Yes | | |
| 274 | + | |
| 275 | + | |
| 276 | +| Code | Type | Model | Message | | |
| 277 | +|-----|-----|-----|-----| | |
| 278 | +| 200 | object | [ResponseSeccess](#github.com.aarongao.tools.ResponseSeccess) | Name名称:Picture图片地址:id图标id | | |
| 279 | +| 500 | object | [ResponseError](#github.com.aarongao.tools.ResponseError) | {"errcode":1,"errmsg":"错误原因"} | | |
| 280 | + | |
| 281 | + | |
| 282 | +<a name="icon-update-post"></a> | |
| 283 | + | |
| 284 | +#### /Icon/Update (POST) | |
| 285 | + | |
| 286 | + | |
| 287 | +图标管理 - 增加或修改图标信息 | |
| 288 | + | |
| 289 | +| Param Name | Example | Data Type | Description | Required? | | |
| 290 | +|-----|-----|-----|-----|-----| | |
| 291 | +| id | 5dfb03070a9ac17ac7a82054 | string | 图标id | Yes | | |
| 292 | + | |
| 293 | + | |
| 294 | +| Code | Type | Model | Message | | |
| 295 | +|-----|-----|-----|-----| | |
| 296 | +| 200 | object | [ResponseSeccess](#github.com.aarongao.tools.ResponseSeccess) | Name名称:Picture图片地址:id图标id:ScenicId景区id | | |
| 297 | +| 500 | object | [ResponseError](#github.com.aarongao.tools.ResponseError) | {"errcode":1,"errmsg":"错误原因"} | | |
| 298 | + | |
| 299 | + | |
| 300 | +<a name="icon-all-get"></a> | |
| 301 | + | |
| 302 | +#### /Icon/All (GET) | |
| 303 | + | |
| 304 | + | |
| 305 | +图标管理 - 所有图标 | |
| 306 | + | |
| 307 | +| Param Name | Example | Data Type | Description | Required? | | |
| 308 | +|-----|-----|-----|-----|-----| | |
| 309 | +| ScenicId | 5dfb03070a9ac17ac7a82054 | string | 景区id | Yes | | |
| 310 | + | |
| 311 | + | |
| 312 | +| Code | Type | Model | Message | | |
| 313 | +|-----|-----|-----|-----| | |
| 314 | +| 200 | object | [ResponseSeccess](#github.com.aarongao.tools.ResponseSeccess) | Name名称:Picture图片地址:id图标id:ScenicId景区id | | |
| 315 | +| 500 | object | [ResponseError](#github.com.aarongao.tools.ResponseError) | {"errcode":1,"errmsg":"错误原因"} | | |
| 316 | + | |
| 317 | + | |
| 318 | + | |
| 261 | 319 | <a name="investigation-save-post"></a> |
| 262 | 320 | |
| 263 | 321 | #### /Investigation/Save (POST) | ... | ... |