marketing.CouponSend.js
2.82 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/**
* Created by yoho on 2016/6/21.
*/
module.exports = {
namespace: "CouponSend",
apis: {
/**************************************发券管理*************************************/
querySendCouponList: {
title: "发券管理列表",
url: "/coupon/querySendCouponList",
params: {
couponType: {type: Number},
couponId: {type: Number},
couponName: {type: String},
department: {type: Number},
page: {type: Number},
size: {type: Number},
startTimeStr: {type: Number},
endTimeStr: {type: Number}
}
},
getCouponDetailById: {
title: "单个券详情",
url: "/coupon/getCouponDetailById",
params: {
couponsId: {type: Number}
}
},
getListByCouponId: {
title: "单个券的发券详情",
url: "/couponSendInfo/getListByCouponId",
params: {
couponId: {type: Number}
}
},
sendCoupon: {
title: "手工发券",
url: "/coupon/sendCoupon",
params: {
couponId: {type: Number},
uids: {type: String}
}
},
sendAgainById: {
title: "文件上传重发",
url: "/couponSendInfo/sendAgainById",
params: {
id: {type: Number}
}
},
queryUserCouponLogsList: {
title: "券记录列表",
url: "/couponLogs/queryUserCouponLogsList",
params: {
page: {type: Number},
size: {type: Number},
couponId: {type: Number},
couponCode: {type: String},
couponName: {type: String},
orderCode: {type: Number},
uid: {type: Number},
status: {type: Number}
}
},
queryCouponSnList: {
title: "公开券列表",
url: "/pCouponSn/queryCouponSnList",
params: {
page: {type: Number},
size: {type: Number},
couponId: {type: Number},
isUse: {type: String}
}
},
couponSendError: {
title: "发券异常列表查询",
url: "/couponSendError/query",
params: [
{name: "page", type: "number"},
{name: "size", type: "number"},
{name: "couponId", type: "number"}
]
},
retrySend: {
title: "重新请求发券",
url: "/couponSendError/retrySend",
params: [
{name: "id", type: "number"}
]
}
}
};