yangan
13 小时以前 a28d0135ee42809b2c5863609da37155d3ecba5b
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
export const globalApi = {
    // 绑定微信
    wxBind: {
        url: '/wrzs/social/bind',
        method: 'POST'
    },
 
    //    收发单
    //    获取发运计划列表
    GetOrderPlan: {
        url: '/wrzs/customerSupplier/getOrderPlan',
        method: 'GET'
    },
    //获取发运计划详情
    // GetOrderPlanDetail: {
    //     url: '/wrzs/wx/GetOrderPlanDetail',
    //     method: 'GET'
    // },
    /**
     * @修改后的获取发运计划详情
     */
    xiangqingList: {
        url: '/wrzs/userOperation/xiangqingList',
        method: 'GET'
    },
 
 
    // 客户领取
    customerGet: {
        url: '/wrzs/wx/customerGet',
        method: 'POST'
    },
    //    转发
    // forward: {
    //     url: "/wrzs/wx/forward",
    //     method: "POST"
    // },
    /**
     * @description 转发修改
     */
    forward: {
        url: '/wrzs/userOperation/forwardList',
        method: 'POST'
    },
    /**
     * @description 转发修改回显
     */
    forwardList: {
        url: '/wrzs/userOperation/forwardListData',
        method: 'GET'
    },
    /**
     * @description 删除一组转发
     */
    deleteForward: {
        url: '/wrzs/userOperation/deleteForward',
        method: 'POST'
    },
    /**
     * @description 获取历史收发单
     */
    getJhOrderPlanDataPage: {
        url: '/wrzs/userOperation/getJhOrderPlanDataPage',
        method: 'GET'
    },
    // 承运商首页列表
    // huoDaiList: {
    //     url: "/wrzs/wx/huoDaiList",
    //     method: "GET"
    // },
    /**
     * @承运商首页列表修改
     */
    huoDaiList: {
        url: '/wrzs/userOperation/huoDaiList    ',
        method: 'GET'
    },
 
    //司机首页列表
    // qiangDanList: {
    //     url: "/wrzs/wx/qiangDanList",
    //     method: "GET"
    // },
    /**
     * @司机首页列表修改
     */
    qiangDanList: {
        url: '/wrzs/app/driver/qiangDanList',
        method: 'GET'
    },
 
    //抢单
    // qiangDan: {
    //     url: "/wrzs/wx/qiangDan",
    //     method: "POST"
    // },
    /**
     * @抢单修改
     */
    qiangDan: {
        url: '/wrzs/app/driver/qiangDan',
        method: 'POST'
    },
 
    //取消抢单
    quXiaoQiangDan: {
        url: '/wrzs/wx/quXiaoQiangDan',
        method: 'POST'
    },
    //预约列表
    // yuYueList: {
    //     url: "/wrzs/wx/yuYueList",
    //     method: "GET"
    // },
    /**
     * @预约列表修改
     */
    yuYueList: {
        url: '/wrzs/userOperation/yuYueList',
        method: 'GET'
    },
    driverYuYueList: {
        url: '/wrzs/app/driver/yuYueAPPList',
        method: 'GET'
    },
 
    //预约
    // yuYue: {
    //     url: "/wrzs/wx/yuYue",
    //     method: "POST"
    // },
    /**
     * @预约修改
     */
    yuYue: {
        url: '/wrzs/app/driver/yuYue',
        method: 'POST'
    },
 
    //获取收发单详情
    // getTakeCoal: {
    //     url: "/wrzs/wx/getTakeCoal",
    //     method: "GET"
    // },
    /**
     * @获取收发单详情修改后
     */
    getTakeCoal: {
        url: '/wrzs/userOperation/getTakeCoal',
        method: 'GET'
    },
 
    //    用户
    // 获取用户信息
    getUserEntity: {
        url: '/wrzs/userentity/getUserEntity',
        method: 'GET'
    },
    // 修改用户信息
    updateUser: {
        url: '/wrzs/wx/updateUser',
        method: 'POST'
    },
    // 获取用户信息
    getUserById: {
        url: '/wrzs/wx/getUserById',
        method: 'POST'
    },
    //获取承运商列表
    getAllHuoDaiByCustomerId: {
        url: '/wrzs/wx/getAllHuoDaiByCustomerId',
        method: 'GET'
    },
    //邀请承运商
    bindHuoDai: {
        url: '/wrzs/wx/bindHuoDai',
        method: 'POST'
    },
    //删除承运商
    deleteHuoDai: {
        url: '/wrzs/wx/deleteHuoDai',
        method: 'POST'
    },
    //获取承运商详情
    getHuoDaiDetail: {
        url: '/wrzs/wx/getHuoDaiDetail',
        method: 'GET'
    },
    //获取司机列表
    GetUserFleet: {
        url: '/wrzs/wx/getUserFleet',
        method: 'GET'
    },
    //邀请司机
    bindUserFleet: {
        url: '/wrzs/wx/bindUserFleet',
        method: 'POST'
    },
    //删除司机
    deleteSiJi: {
        url: '/wrzs/wx/deleteSiJi',
        method: 'POST',
    },
 
 
    //    车辆
    // 获取车队列表
    getFleet: {
        url: '/wrzs/wx/getFleet',
        method: 'GET'
    },
    //新增车队
    saveFleet: {
        url: '/wrzs/wx/saveFleet',
        method: 'POST'
    },
    // 删除车队
    deleteFleet: {
        url: '/wrzs/wx/deleteFleet',
        method: 'POST'
    },
 
    /**
     * @签到
     */
    arrive: {
        url: '/wrzs/userOperation/arrive',
        method: 'POST'
    },
    /**
     * @入场申请
     */
    // 新增
    saveRCSQ: {
        url: '/wrzs/tminapply/save',
        method: 'POST'
    },
    // 修改
    updateByIdRCSQ: {
        url: '/wrzs/tminapply/updateById',
        method: 'PUT'
    },
    // 查询
    pageRCSQ: {
        url: '/wrzs/tminapply/page',
        method: 'GET'
    },
 
    /**
     * @description 第一次放空
     */
    getOneEvacuation: {
        url: '/wrzs/userOperation/getOneEvacuation',
        method: 'POST'
    },
    /**
     * @description 第二次放空
     */
    getTwoEvacuation: {
        url: '/wrzs/userOperation/getTwoEvacuation',
        method: 'POST'
    },
    /**
     * @称重
     */
    saveWeigh: {
        // url: '/wrzs/userOperation/saveWeigh',
        url:'/wrzs/app/driver/saveWeigh',
        method: 'POST'
    },
    // 获取称重信息
    weighList: {
        url: '/wrzs/userOperation/weighList',
        method: 'GET'
    },
    // 加减煤
    addAndSubtractCoal: {
        url: '/wrzs/jcgatestate/repeatCheck',
        method: 'POST'
    },
    // 获取所在磅房
    getWeighHouse: {
        url: '/wrzs/jccoalweighhouse/getUpperPound',
        method: 'GET'
    },
    getWeighHouse1: {
        url: '/wrzs/jccoalweighhouse/getWeighHouse',
        method: 'GET'
    },
    // 收发单日志查询
    coalDayPage: {
        url: '/wrzs/tmtaskcoallog/getTmId',
        method: 'GET'
    },
 
    // 获取openId
    getCallOutList: {
        url: '/wrzs/callout/getCallOutList',
        method: 'GET'
    },
    // 获取消息列表
    getMessageByUser: {
        url: '/wrzs/appMessage/getMessageByUser',
        method: 'GET'
    },
    // 已读消息
    readMessage: { url: '/wrzs/appMessage/readMessage' },
    // 删除消息
    delteMessage: { url: '/wrzs/appMessage/deleteMessage', method: 'GET' },
    // 消息详情
    getMsgDetail: {
        url: '/wrzs/appMessage/getMsgById',
        method: 'GET'
    },
    // 发运统计筛选条件
    getShippingCondition: {
        url: '/wrzs/tmtaskcoal/getShippingCondition',
        method: 'GET'
    },
    // 发运统计数据
    getTmTaskCoalData: {
        url: '/wrzs/tmtaskcoal/getTmTaskCoalData',
        method: 'GET'
    },
    //根据id拿到转发中的原始数量
    jhorderplanforward: {
        url: '/wrzs/jhorderplanforward/getAppById',
        method: 'GET'
    },
    /** 
      @description 管理用户页面获取用户列表信息
    */
    appUserPage: {
        url: '/wrzs/userentity/appUserPage',
        method: 'GET'
    },
    /**
      @description 根据用户列表信息的userid查找
    */
    getAppById: {
        url: '/wrzs/userentity/getAppById',
        method: 'GET'
    },
    /**
      @description 根据用户列表信息的userid编辑
    */
    appUpdateById: { url: '/wrzs/userentity/appUpdateById', },
    /**
      @description 根据用户列表信息的userid删除
    */
    appRemoveById: { url: '/wrzs/userentity/appRemoveById' },
    /**
      @description 新增用户信息
    */
    appSave: {
        url: '/wrzs/userentity/appSave',
        method: 'POST'
    },
    /**
     @description 司机首页点击地图icon获取经纬度
     */
    getAppLocation: {
        url: '/wrzs/userOperation/getAppLocation',
        method: 'GET'
    },
    /**
     @description 判断是否要完成外销收发单
     */
    getTmTaskCoalOrderType: {
        url: '/wrzs/tmtaskcoal/getTmTaskCoalOrderType',
        method: 'GET'
    },
    /**
     @description 更新收发单状态
     */
    updateTmTaskCoalState: {
        url: '/wrzs/tmtaskcoal/updateTmTaskCoalState',
        method: 'POST'
    },
    /**
     @description 后台用户绑定
     */
    setUpWxOpenid: {
        url: '/admin/user/setUpWxOpenid',
        method: 'POST'
    },
    /**
     * @description 装卸员查看所有煤种类型 */
    getCoalNameAll: {
        url: '/wrzs/jccoalbunker/getCoalNameAll',
        method: 'GET'
    },
    /**
     * @description 选择煤种 */
    getAccordingCoalNameAll: {
        url: '/wrzs/tmtaskcoal/getAccordingCoalNameAll',
        method: 'GET'
    },
    /**
     * @description 确认卸货 */
    confirmLoadAndUnload: {
        url: '/wrzs/tmtaskcoal/confirmLoadAndUnload',
        method: 'POST'
    },
    /**
     * @description 皮重异常 */
    getAvgSkin: {
        url: '/wrzs/tmtaskcoal/getAvgSkin',
        method: 'GET'
    },
    /**
     * @description 皮重异常原因填写 */
    tmAbnormalTextAdd: {
        url: '/wrzs/tmtaskcoal/tmAbnormalTextAdd',
        method: 'POST'
    },
    /**
     * @description 获取appid和secret */
    getAppidAndSercet: {
        url: '/wrzs/wx/getAppidAndSercet',
        method: 'GET'
    },
    /**
     * @description 皮重异常调用 */
    skinAbnormal: {
        url: '/wrzs/printer/skinAbnormal',
        method: 'POST'
    },
    /**
     * @description 批量邀请司机  */
    bindUserFleetBatch: {
        url: '/wrzs/wx/bindUserFleetBatch',
        method: 'POST'
    },
    /**
     * @description 打印出入门证*/
    printer: {
        url: '/wrzs/printer/handler',
        method: 'GET'
    },
    /**
     * @description 装卸员通过负责的单位查询场地*/
    getDeptIdFiled: {
        url: '/wrzs/jccoalfiled/getDeptIdFiled',
        method: 'GET'
    },
    /**
     * @description 装卸员查看场地下所有的煤种类型
     */
    getFiledIdCoalBunker: {
        url: '/wrzs/jccoalbunker/getFiledIdCoalBunker',
        method: 'GET'
    },
    /**
     * @description 新增外购原发磅单表
     */
    appSaveContact: {
        url: '/wrzs/tmtaskcoalcontact/appSave',
        method: 'POST'
    },
    /**
     * @description 查询是否有此用户
     */
    phoneAndCard: {
        url: '/wrzs/userentity/phoneAndCard',
        method: 'GET'
    },
    /**
     * @description 请求退单
     */
    cancelAppoint: {
        url: '/wrzs/userOperation/quXiaoQiangDan',
        method: 'POST'
    },
    /**
     * @description 积分详情
     */
    scoreDetail: {
        url: '/wrzs/userintegral/appPage',
        method: 'GET'
    },
    /**
     * @description 根据司机去查询相关送货客户列表
     */
    getShipToList: {
        url: '/wrzs/shipto/getShipToList',
        method: 'GET'
    },
    /**
     * @description 保存送货客户
     */
    saveShipTo: {
        url: '/wrzs/shipto/saveShipTo',
        method: 'POST'
    },
    /**
     * @description 删除送货客户
     */
    deleteShipTo: {
        url: '/wrzs/shipto/deleteShipTo',
        method: 'POST'
    },
    /**
     * @description 根据车牌号查询相关的单位
     */
    getCarNoByVarieties: {
        url: '/wrzs/specialvarieties/getCarNoByVarieties',
        method: 'GET'
    },
    /**
     * @description 根据单位查询相关的产品
     */
    getDeptByProductName: {
        url: '/wrzs/specialvarieties/getDeptByProductName',
        method: 'GET'
    },
    /**
     * @description 根据单位查询场地
     */
    getDeptIdByFiledList: {
        url: '/wrzs/jccoalfiled/getDeptIdByFiledList',
        method: 'GET'
    },
    /**
     * @description 确认自主创建
     */
    saveDeliveryNote: {
        url: '/wrzs/tmtaskcoal/saveDeliveryNote',
        method: 'POST'
    },
    /**
     * @description 
     */
    getDeptAndProductNameByCustomer: {
        url: '/wrzs/specialvarieties/getDeptAndProductNameByCustomer',
        method: 'GET'
    },
    // 场内接单
    insideConnect: {
        url: '/wrzs/tmtaskcoal/insideConnect',
        methods: 'POST'
    },
    //"仓库视频地址"
    useEqCodeGetCameraUrl: {
        url: '/wrzs/jcequipment/useEqCodeGetCameraUrl',
        method: 'GET'
    },
    //'获取路线‘
    getRoute:{
        url: '/wrzs/guideroutemanage/getGuideRouteByType',
        method: 'GET'
    },
 
    //库管获取仓库
    getWarehouseList:{
        url: '/wrzs/warehouse/getMyWarehouseList',
        method: 'GET'
    },
    //获取仓库下的收发单
        getTaskCoalListByBunkerId:{
        url: '/wrzs/warehouse/getMyTaskCoalListByBunkerId',
        method: 'GET'
    },
 
    /**
     * @description 我来送货
     */
    myDelivery:{
        url: '/wrzs/jhorderplan',
        method: 'GET'
    },
    saveMyDelivery: {
        url: '/wrzs/app/driver/saveMyDelivery',
        methods: 'POST'
    },
    getCheckTaskCoal:{
        url: '/wrzs/guard/getCheckTaskCoal',
        method: 'GET'
    },
    getAlreadyCheckTaskCoal:{
        url: '/wrzs/guard/getAlreadyCheckTaskCoal',
        method: 'GET'
    },
    //临时司机列表
    getTemporaryEntryInspectionList:{
        url: '/wrzs/guard/getTemporaryEntryInspectionList',
        method: 'GET'
    },
    //临时司机出厂列表
    getTemporaryEntryOutInspectionList:{
        url: '/wrzs/guard/getTemporaryEntryOutInspectionList',
        method: 'GET'
    },
    //临时司机检查
    temporaryEntryConfirmation:{
        url: '/wrzs/guard/temporaryEntryConfirmation',
        method: 'POST'
    },
    temporaryentryinspection:{
        url: '/wrzs/temporaryentryinspection',
        method: 'PUT'
    },
    addCheckLog: {
        url: '/wrzs/guard/addCheckLog',
        methods: 'POST'
    },
    saveDriverDocs: {
        url: '/wrzs/userentity/saveDriverDocs',
        methods: 'POST'
    },
    // 获取产品表
    getProductTree:{
        url: '/wrzs/jcproduct/getProductTree',
        method: 'GET'
    },
    getProductIsDanger:{
        url: '/wrzs/jcproduct/getProductIsDanger',
        method: 'GET'
    },
    
    /**
     * @description 购买证
     */
    addBuycard: {
        url: '/wrzs/buycard',
        methods: 'POST'
    },
    putBuycard: {
        url: '/wrzs/buycard',
        methods: 'PUT'
    },
    getBuyCardList: {
        url: '/wrzs/buycard/getBuyCardList',
        methods: 'GET'
    },
    // 注册
    registerDriver: {
        url: '/wrzs/userentity/registerDriver',
        methods: 'GET'
    },
    //客户日计划获取订单
    getOrderList: {
        url: '/wrzs/tmorder/getOrderList',
        methods: 'GET'
    },
    //客户获取创建日计划订单
    getAppOrderList:{
        url: '/wrzs/customerSupplier/getAppOrderList',
        methods: 'GET'
    },
    //客户创建日计划
    addDeliveryPlan:{
        url: '/wrzs/customerSupplier/addDeliveryPlan',
        methods: 'GET'
    },
    // 提交剧毒通行证
    
    addJcroadtransport: {
        url: '/wrzs/jcroadtransport/add',
        methods: 'POST'
    },
    // 获取剧毒通行证
    getDriverListById: {
        url: '/wrzs/jcroadtransport/getDriverListById',
        methods: 'GET'
    },
    // 更改剧毒通行证
    putJcroadtransport: {
        url: '/wrzs/jcroadtransport',
        methods: 'PUT'
    },
    // 根据id查找剧毒通行证
    getById: {
        url: '/wrzs/jcroadtransport/getById',
        methods: 'GET'
    },
    //检查剧毒通行证号
    checkNumber: {
        url: '/wrzs/jcroadtransport/checkNumber',
        methods: 'GET'
    },
    //库管获取日计划
    getMyPlanListByBunkerId:{
        url:'/wrzs/warehouse/getMyPlanListByBunkerId',
        methods:'GET'
    },
    //查看详情
    getTmOrderById: {
        url: '/wrzs/tmtaskcoal',
        methods: 'GET'
    },
    //确认装卸
    confirmLoadAndUnload:{
        url: '/wrzs/warehouse/confirmLoadAndUnload',
        methods: 'POST'
    },
    //查看原盐钙镁
    getQualityResultEachCustomer:{
        url: '/wrzs/warehouse/getQualityResultEachCustomer',
        methods: 'GET'
    },
    
    getMyEscortList: {
        url: '/wrzs/app/driver/getMyEscortList',
        methods: 'GET'
    },
    saveMyEscort:{
        url: '/wrzs/app/driver/saveMyEscort',
        methods: 'POST'
    },
    //修改收发单
    tmtaskCoalPut:{
        url: '/wrzs/tmtaskcoal',
        methods: 'PUT'
    },
    //填写集装箱号
    addContainer:{
        url: '/wrzs/app/driver/addContainer',
        methods: 'PUT'
    },
    //字典
    dictFun:{
        url: '/admin/dict/type',
        methods: 'GET'
    },
    // 修改头像
    faceEdit:{
        url: '/wrzs/userentity/updateImgPath',
        methods: 'PUT'
    },
    // 修改密码
    passwordEdit:{
        url: '/wrzs/userentity/appUpdatePassword',
        methods: 'PUT'
    },
    //获取客户or供应商标识
    getPersonnelType:{
        url: '/wrzs/yhcustomer',
        methods: 'PUT'
    },
    //转发获取PVC吨数列表
    getBuildList:{
        url: '/wrzs/pvcforward/getBuildList',
        methods: 'get'
    },
    //PVC转发计划提交
    
    allocation:{
        url: '/wrzs/pvcforward/allocation',
        methods: 'PUT'
    },
    //库管获取历史通知单
    getHistoryTaskCoalList:{
        url: '/wrzs/warehouse/getHistoryTaskCoalList',
        methods: 'GET'
    },
    //获取已确认收罚单
    getTodayConfirmedTaskCoalList:{
        url: '/wrzs/warehouse/getTodayConfirmedTaskCoalList',
        methods: 'GET'
    },
    //获取可拼单司机单
    getUnclaimedList:{
        url: '/wrzs/warehouse/getUnclaimedList',
        methods: 'GET'
    },
    //司机接单
    splicingOrders:{
        url: '/wrzs/warehouse/splicingOrders',
        methods: 'POST'
    },
    //供应商获取合卡订单
    getCloseOrderList:{
        url: '/wrzs/tmorder/getCloseOrderList',
        methods: 'get'
    },
    //修改确认装卸
    confirmLoadAndUnloadModify:{
        url: '/wrzs/warehouse/confirmLoadAndUnloadModify',
        methods: 'POST'
    },
    //一建装卸
    oneClickLoading:{
        url: '/wrzs/warehouse/oneClickLoading',
        methods: 'POST'
    },
    //司机接单后的pvc可拼单列表
    pvcSplicingList:{
        url: '/wrzs/tmtaskcoalpvcpd/pvcSplicingList',
        methods: 'GET'
    },
    //司机Pvc拼单接口
    pvcSplicingOfDriver:{
        url: '/wrzs/tmtaskcoalpvcpd/pvcSplicingOfDriver',
        methods: 'POST'
    },
    //司机取消拼单接口
    cancelPindan:{
        url: '/wrzs/tmtaskcoalpvcpd/cancelPindan',
        methods: 'POST'
    },
        //id查询pvc的拼单表
    getPdListByMainTmTaskCoalId:{
        url: '/wrzs/tmtaskcoalpvcpd/getPdListByMainTmTaskCoalId',
        methods: 'GET'
    },
    //pvc库管装卸
    pvcConfirmLoadAndUnload:{
        url: '/wrzs/warehouse/pvcConfirmLoadAndUnload',
        methods: 'POST'
    },
    //库管查询日计划
    getMyPlanListByBunkerIdsAndProductIds:{
        url:'/wrzs/warehouse/getMyPlanListByBunkerIdsAndProductIds',
        methods: 'GET'
    }
 
 
    
 
}