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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
//
// CYConstManager.m
// Lighting
//
// Created by 曹云霄 on 2016/10/17.
// Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//
#import "CYConstManager.h"
/*****************************************接口地址*****************************************/
/**
* 登陆
*/
NSString *const LOGIN = @"/employee/login";
/**
* 发送验证码
*/
NSString *const SENDSMS = @"/system/sendSms?mobilephone=%@&username=%@";
/**
* 重置密码
*/
NSString *const RESETPASSWORD = @"/employee/resetPassword";
/**
* 新增地址
*/
NSString *const ADDADDRESS = @"/shippingAddress/save";
/**
* 更改地址
*/
NSString *const CHANGEADDRESS = @"/shippingAddress/update";
/**
* 删除地址
*/
NSString *const REMOVEADDRESS = @"/shippingAddress/remove/";
/**
* 场景筛选
*/
NSString *const SCENESCREENING = @"/scene/getSceneFilter";
/**
* 热门搜索
*/
NSString *const HOTSEARCH = @"/hottag/getHotTag";
/**
* 场景列表
*/
NSString *const SCENELIST = @"/scene/query";
/**
* 经营者二维码
*/
NSString *const QRCODE = @"/employee/getReseller";
/**
* 确认支付
*/
NSString *const CONFIRMPAY = @"/order/payOrder";
/**
* 获取购物袋商品
*/
NSString *const SHOPPINGBAG = @"/shopcart/query";
/**
* 删除购物袋
*/
NSString *const REMOVESHOPPINGBAG = @"/shopcart/delete";
/**
* 更改购物车商品数量、价格
*/
NSString *const CHANGESHOPPINGBAGNUMBERPRICE = @"/shopcart/updateCostPrice/";
/**
* 添加到购物车
*/
NSString *const ADDSHOPPINGBAG = @"/shopcart/save";
/**
* 查询购物车数量
*/
NSString *const QUERYSHOPPINGBAGNUMBER = @"/shopcart/get/";
/**
* 查询所有订单
*/
NSString *const QUERYORDER = @"/order/query";
/**
* 撤销订单
*/
NSString *const RESETORDER = @"/order/updateOrderState/";
/**
* 分享商品
*/
NSString *const SHARE = @"/system/shareGoods";
/**
* 分享订单
*/
NSString *const SHAREORDERBILL = @"/order/OrderShare";
/**
* 产品筛选
*/
NSString *const PRODUCTSCREENING = @"/goods/getGoodsFilter";
/**
* 产品列表
*/
NSString *const PRODUCTLIST = @"/goods/query";
/**
* 条形码搜索
*/
NSString *const BARCODESEARCH = @"/goods/getGoodsByCode/";
/**
* 获取导购关联客户
*/
NSString *const GETSHOPPERSCONSUMER = @"/consumer/query";
/**
* 修改密码
*/
NSString *const MODIFYPASSWORD = @"/employee/modifyPassword";
/**
* 订单详情
*/
NSString *const ORDERDETAILS = @"/order/findOrder/";
/**
* PDF路径
*/
NSString *const DOWNLOADPDF = @"/order/urlOfprintPDF/";
/**
* 收货地址
*/
NSString *const SHIPPINGADDRESS = @"/shippingAddress/listAddress/";
/**
* 生成订单
*/
NSString *const CREATEORDER = @"/order/save";
/**
* 商品详情
*/
NSString *const GOODSDETAILS = @"/goods/getGoods/";
/**
* 导购返利
*/
NSString *const SHOPPERSCOMMISSION = @"/employee/getCommission?id=";
/**
* 上传文件
*/
NSString *const UPLOADHEADER = @"/system/upload";
/**
* 修改导购个人信息
*/
NSString *const MODITYSHOPPERSINFORMATION = @"/employee/updateEmployee";
/**
* 注销登录
*/
NSString *const CANCELLOGIN = @"/employee/logout";
/**
* 新增客户
*/
NSString *const ADDCONSUMER = @"/consumer/save";
/**
* 写入访问时间
*/
NSString *const SAVEVISITEDTIME = @"/consumer/saveLastVisitedTime?consumerId=";
/**
* 获取版本升级信息
*/
NSString *const VERSION = @"/employee/getUpgrade?";
/**
* 查询返利信息
*/
NSString *const REBATE = @"/applybill/getTotal";
//** 提现 */
NSString *const WITHDRAWAL = @"/applybill/save";
/**
* 收支明细
*/
NSString *const PAYMENTS = @"/applybill/queryCommission";
/**
* 提现进度
*/
NSString *const WITHDRAWALPROGRESS = @"/applybill/queryApplyBill";
/**
* 提现进度详情
*/
NSString *const WITHDRAWALPROGRESSDETAILS = @"/applybill/getDetailState";
/**
* 查询实时促销信息
*/
NSString *const PROMOTIONAL = @"/promotion/calc/%@";
/**
* 查询历史促销信息
*/
NSString *const OLDPROMOTIONAL = @"/orderpromotion/get/%@";
/**
* 查询我的卡劵信息
*/
NSString *const CARDINFORMATION = @"/jingdongecard/query";
/**
* 发放JDEka
*/
NSString *const JDECARD = @"/jingdongecard/dispense?denomation=%ld&guideId=%@&orderNumber=%@";
/**
* 激活京东E卡
*/
NSString *const ACTIVIATIONJDECARD = @"/jingdongecard/active?orderNumber=%@&orderReceiptUrl=%@";
/**
* 领取京东E卡
*/
NSString *const RECEIVEJDECARD = @"/jingdongecard/use?cardNumber=%@";
/**
* 查询所有京东E卡
*/
NSString *const QUERYALLJDECARD = @"/jingdongecard/simpleQuery";
/**
* 使用京东E卡
*/
NSString *const USEJDECARD = @"/jingdongecard/use?cardNumber=%@";
/**
* 抽奖
*/
NSString *const DRAW = @"/tOLotteryController.do?lotteryAward&lotteryId=%@&drawId=%@&orderNumber=%@";
/**
* 拼接订单详情URL(打印/预览)
*/
NSString *const ORDERDETAILSURL = @"/tOOrderController.do?htmlOfPdf&reseller_id=%@&order_number=%@";
/**
* 抽奖结果查询
*/
NSString *const LOTTERYED = @"/lottery/query";
/**
* 使用微信卡劵
*/
NSString *const USEWECHATCARD = @"http://wxcard.opple.com/api/Pay?voucherNo=%@&orderNum=%@&orderTotal=%@";
/**
* 查询积分
*/
NSString *const INTEGRALQUERY = @"/score/details?employee=%@";
/*****************************************接口地址*****************************************/
/**
* 通知已上传小票
*/
NSString *const UPLOAD_COMPLETE = @"UploadToComplete";
/**
* 通知已查看京东卡密码
*/
NSString *const VIEWPASSWORD = @"viewPassword";
/**
* 京东卡状态<发放>
*/
NSString *const DISPENSED = @"dispensed";
/**
* 京东卡状态<激活>
*/
NSString *const ACTIVED = @"actived";
/**
* 京东卡状态<查看>
*/
NSString *const USED = @"used";
/**
* 更新购物车商品
*/
NSString *const SHOPPINGCARGOODS = @"shoppingCar";
/**
* 通知打开响应的控制器
*/
NSString *const OPENCONTROLLER = @"openController";
/**
* 打开体验中心
*/
NSString *const OPENFOLLOWHEARTVC = @"FollowHeartVC";
/**
* 微信卡劵
*/
NSString *const WXCardAction = @"WXCardAction";
/**
* 京东E卡
*/
NSString *const JDECardAction = @"jdECardAction";
/**
* 导购
*/
NSString *const GUIDE = @"guide";
/**
* 消费者
*/
NSString *const CONSUMER = @"consumer";
/**
* 折扣金额
*/
NSString *const deductionAction = @"deductionAction";
/**
* 赠送商品
*/
NSString *const goodsAction = @"goodsAction";
/**
* 转盘抽奖
*/
NSString *const lotteryAction = @"lotteryAction";
/**
* 微信卡劵
*/
NSString *const WeChatCard = @"wxCardAction";
/**
* 未付款
*/
NSString *const NOTPAY = @"001";
/**
* 已付款
*/
NSString *const PAYSUCCESS = @"002";
/**
* 已发货
*/
NSString *const SHIPPED = @"003";
/**
* 已退货
*/
NSString *const RETURN = @"004";
/**
* 已作废
*/
NSString *const CANCEL = @"005";
/**
* 已完成
*/
NSString *const COMPLETED = @"006";
/**
* 已抽奖未使用
*/
NSString *const ACCOMPLISHED = @"accomplished";
/**
未抽奖
*/
NSString *const INITIAL = @"initial";
/**
* 刷新购物车
*/
NSString *const REFRESHSHOPPINGCAR = @"GOODSNUMBER";
/**
* 增加购物车
*/
NSString *const ADDSHOPPINGCAR = @"ADDGOODS";
/**
* 更改用户名
*/
NSString *const CHANGECUSTOMERNAME = @"CHANGECUSTOMERNAME";
/**
* 更改导购名
*/
NSString *const CHANGESHOPPERSNAME = @"CHANGESHOPPERSNAME";
/**
* 提示抽奖信息
*/
NSString *const PROMPTDRAWINFORMATION = @"PROMPTDRAWINFORMATION";