search.matchWords.js
1.95 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
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
* Created by LiQZ
* 匹配词管理管理
*/
module.exports={
namespace:"matchWords",
apis:{
matchWordsList: {
title: "查询匹配词列表接口",
url: "/match_words_list",
params: [
{name: "matchWordName", type: "string"},
{name: "status", type: "number"},
{name: "timeStatus", type: "number"},
{name: "startTime", type: "number"},
{name: "endTime", type: "number"},
{name: 'page', type: 'Number'},
{name: 'size', type: 'Number'}
]
},
matchWordsSaveOrUpdate:{
title: "添加更新/匹配词接口",
url: "/match_words_save_update",
params: [
{name: "id", type: "number"},
{name: "matchWordName", type: "string"},
{name: "channelIds", type: "string"},
{name: "matchPcUrl", type: "string"},
{name: "matchAppAction", type: "string"},
{name: "matchAppUrl", type: "string"},
{name: "status", type: "number"},
{name: "startTime", type: "number"},
{name: "endTime", type: "number"}
]
},
matchWordsDelete:{
title: "删除匹配词接口",
url: "/match_words_delete",
params: [
{name: "id", type: "number"}
]
},
matchWordsTriggerStatus: {
title: "状态切换接口",
url:"/match_words_trigger_status",
params: [
{name: "id", type: "number"},
{name: "status", type: "number"}
]
},
querySCListByLevel: {
title: "查询一级销售类目接口",
url:"/salesCategory/querySCListByLevel",
params: [
{name: "levelNumber", type: "string"}
]
}
}
}