operations.shopsVersionUpdate.js
1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/**
* Created by ty on 2016/6/23.
* 商家端app包上传
*/
module.exports={
namespace:"shopsVersionUpdate",
apis:{
getAppVersionList:{
title: "app版本列表",
url: "/AppVersionRest/getAppVersionList",
params: [
{name: "page", type: "number"},
{name: "size", type: "number"},
{name: "appVersion", type: "string"},
{name: "clientType", type: "string"}
]
},
setAppVersion:{
title: "添加app版本",
url: "/AppVersionRest/setAppVersion",
params: [
{name: "appVersion", type: "string"},
{name: "clientType", type: "string"},
{name: "url", type: "string"},
{name: "content", type: "string"},
{name: "status", type: "string"}
]
},
delAppVersion:{
title: "删除app版本",
url: "/AppVersionRest/delAppVersion",
params: [
{name: "id", type: "number"}
]
},
editAppVersion:{
title: "编辑app版本",
url: "/AppVersionRest/editAppVersion",
params: [
{name: "id", type: "number"},
{name: "status", type: "string"}
]
}
}
}