[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`: '',
}
}
~~~