[TOC]
## 获取版本信息(不需要)
~~~[api]
post:/version/info
*int:id=1#版本ID
<<<
返回结果
{
"code": 0,
"info": "成功",
"data":{
"id": 1013,
"create_time": "1970-01-01 08:00:00",
"version_type": 1002,
"kind": 0,
"title": "1.0.0",
"status": 1,
"remark": "",
"versionType":{
"id": 1002,
"create_time": "2018-12-13 14:19:53",
"title": "客e达",
"remark": null,
"web_folder": "abacus_crm_pc",
"php_folder": "abacus_crm_server"
}
}
}
~~~
## 创建版本
~~~[api]
post:/version/add
<<<
请求内容
{
"version_type": 1000, // 版本类型id
"kind": 0, // 前端=0 后端=1
"title": "3.9.0"
}
<<<
返回结果
同 info
~~~
## 修改版本
~~~[api]
post:/version/edit
<<<
请求内容
{
"id":1, //分类id
"title": "3.8.0"
"version_type": 1000, // 版本类型id
"kind": 0, // 前端=0 后端=1
"title": "3.9.0"
}
<<<
返回结果
同 info
~~~
## 删除版本
~~~[api]
post:/version/del
<<<
请求内容
{
"id":1 //版本id
}
<<<
返回结果
{
"code": 0,
"info": "success",
"data": null
}
~~~
## 获取版本列表
~~~[api]
post:/version/versionlist
<<<
请求内容
{
"version_type": 1000, // 版本类型id
"page": 1, // 分页
"limit": 1, // 每页显示
}
<<<
返回结果
{
"code": 0,
"info": "success",
"data":
[
{
"id": 1000, // 版本ID
"title": "3.7.0", // 任务名称
"version_type": 1000, // 版本类型id
"version_kind": 1000, // 版本分类id
"status": 1, // 1-稳定版
"state": 0, // 0-有同名备份 1-正在生成备份中
"remark": '', // 备注
"create_time": "2018-05-20 12:20:22", // 创建时间
"version_type": // 版本类型
{
"id": 1001, // ID
"title": "a3", // 名称
"create_time": "2018-05-20 12:20:22",// 创建时间
"remark": '' // 备注
}
}
]
}
~~~
## 设置稳定版
~~~[api]
post:/version/set
<<<
请求内容
{
"id":1, //版本id
}
<<<
返回结果
{
"code": 0,
"info": "success",
"data": null
}
~~~