search.matchWords.js 1.95 KB
/**
 * 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"}
            ]
        }
    }
}