[TOC]
## 获取分类列表
~~~[api]
post:/version/typelist
*int:id=1#ID
<<<
返回结果
{
"code": 0,
"info": "success",
"data": [
{
"id": 1000,
"title": "A3",
"create_time": 0,
`remark`: '',
}
]
}
~~~
## 创建分类
~~~[api]
post:/version/addtype
<<<
请求内容
{
"title": "A3"
"web_folder": "前端文件夹地址"
"php_folder": "后端文件夹地址"
}
<<<
返回结果
{
"code": 0,
"info": "success",
"data":
{
"id": 1000,
"title": "A3",
"create_time": 0,
`remark`: '',
}
}
~~~