|
@@ -1,28 +1,5 @@
|
1
|
1
|
package com.ydw.yunbuyer.web.pm.controller_wxapp;
|
2
|
2
|
|
3
|
|
-import java.io.IOException;
|
4
|
|
-import java.math.BigDecimal;
|
5
|
|
-import java.util.ArrayList;
|
6
|
|
-import java.util.HashMap;
|
7
|
|
-import java.util.LinkedList;
|
8
|
|
-import java.util.List;
|
9
|
|
-import java.util.Map;
|
10
|
|
-
|
11
|
|
-import com.ydw.yunbuyer.common.base.enums.TimeEnum;
|
12
|
|
-import io.swagger.annotations.Api;
|
13
|
|
-import io.swagger.annotations.ApiOperation;
|
14
|
|
-import org.apache.http.client.ClientProtocolException;
|
15
|
|
-import org.springframework.beans.factory.annotation.Autowired;
|
16
|
|
-import org.springframework.context.annotation.Scope;
|
17
|
|
-import org.springframework.util.StringUtils;
|
18
|
|
-import org.springframework.web.bind.annotation.GetMapping;
|
19
|
|
-import org.springframework.web.bind.annotation.PostMapping;
|
20
|
|
-import org.springframework.web.bind.annotation.RequestMapping;
|
21
|
|
-import org.springframework.web.bind.annotation.RestController;
|
22
|
|
-import org.tmsps.ne4spring.utils.ChkUtil;
|
23
|
|
-import org.tmsps.ne4spring.utils.DateTools;
|
24
|
|
-import org.tmsps.ne4spring.utils.JsonUtil;
|
25
|
|
-
|
26
|
3
|
import com.alibaba.fastjson.JSONObject;
|
27
|
4
|
import com.ydw.yunbuyer.api.system.api.SmsApi;
|
28
|
5
|
import com.ydw.yunbuyer.api.user.api.AddressApi;
|
|
@@ -30,32 +7,34 @@ import com.ydw.yunbuyer.api.user.api.PersionApi;
|
30
|
7
|
import com.ydw.yunbuyer.api.user.api.WxApi;
|
31
|
8
|
import com.ydw.yunbuyer.api.user.entity.Persion;
|
32
|
9
|
import com.ydw.yunbuyer.api.user.entity.ReceiveAddress;
|
|
10
|
+import com.ydw.yunbuyer.common.base.enums.TimeEnum;
|
33
|
11
|
import com.ydw.yunbuyer.common.utils.BeanUtils;
|
34
|
12
|
import com.ydw.yunbuyer.common.utils.ChkTools;
|
35
|
13
|
import com.ydw.yunbuyer.common.utils.express.ExpressUtils;
|
36
|
14
|
import com.ydw.yunbuyer.common.utils.live.LiveTools;
|
37
|
15
|
import com.ydw.yunbuyer.web.pm.base.ProjBaseAction;
|
38
|
16
|
import com.ydw.yunbuyer.web.pm.base.Tip;
|
39
|
|
-import com.ydw.yunbuyer.web.pm.entity.t_classify;
|
40
|
|
-import com.ydw.yunbuyer.web.pm.entity.t_liveroom;
|
41
|
|
-import com.ydw.yunbuyer.web.pm.entity.t_pay_no;
|
42
|
|
-import com.ydw.yunbuyer.web.pm.entity.t_pm_item;
|
43
|
|
-import com.ydw.yunbuyer.web.pm.entity.t_pm_item_submit;
|
44
|
|
-import com.ydw.yunbuyer.web.pm.entity.t_pm_item_submit_offer;
|
45
|
|
-import com.ydw.yunbuyer.web.pm.entity.t_pm_offline_apply;
|
46
|
|
-import com.ydw.yunbuyer.web.pm.entity.t_shop;
|
|
17
|
+import com.ydw.yunbuyer.web.pm.entity.*;
|
47
|
18
|
import com.ydw.yunbuyer.web.pm.entity.user.t_receive_address;
|
48
|
|
-import com.ydw.yunbuyer.web.pm.service.LiveRoomService;
|
49
|
|
-import com.ydw.yunbuyer.web.pm.service.PmItemService;
|
50
|
|
-import com.ydw.yunbuyer.web.pm.service.PmProjectItemService;
|
51
|
|
-import com.ydw.yunbuyer.web.pm.service.ShopService;
|
52
|
|
-import com.ydw.yunbuyer.web.pm.service.SlideShowService;
|
53
|
|
-import com.ydw.yunbuyer.web.pm.service.WxPmService;
|
54
|
|
-import com.ydw.yunbuyer.web.pm.service.WxSubmitService;
|
|
19
|
+import com.ydw.yunbuyer.web.pm.service.*;
|
55
|
20
|
import com.ydw.yunbuyer.web.pm.utils.OrderTools;
|
56
|
21
|
import com.ydw.yunbuyer.web.pm.utils.SensitiveWord;
|
57
|
22
|
import com.ydw.yunbuyer.web.pm.web.SessionWxService;
|
58
|
23
|
import com.ydw.yunbuyer.web.pm.web.WebTools;
|
|
24
|
+import io.swagger.annotations.Api;
|
|
25
|
+import io.swagger.annotations.ApiOperation;
|
|
26
|
+import org.apache.http.client.ClientProtocolException;
|
|
27
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
28
|
+import org.springframework.context.annotation.Scope;
|
|
29
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
30
|
+import org.springframework.web.bind.annotation.RestController;
|
|
31
|
+import org.tmsps.ne4spring.utils.ChkUtil;
|
|
32
|
+import org.tmsps.ne4spring.utils.DateTools;
|
|
33
|
+import org.tmsps.ne4spring.utils.JsonUtil;
|
|
34
|
+
|
|
35
|
+import java.io.IOException;
|
|
36
|
+import java.math.BigDecimal;
|
|
37
|
+import java.util.*;
|
59
|
38
|
|
60
|
39
|
/**
|
61
|
40
|
*
|
|
@@ -114,7 +93,7 @@ public class WxPmController extends ProjBaseAction {
|
114
|
93
|
* @return
|
115
|
94
|
*/
|
116
|
95
|
@ApiOperation("发送短信")
|
117
|
|
- @PostMapping(value = "/send_mobile_wx")
|
|
96
|
+ @RequestMapping(value = "/send_mobile_wx")
|
118
|
97
|
public String send_mobile_wx(String mobile) {
|
119
|
98
|
if (persionApi.check_mobile(mobile)) {
|
120
|
99
|
String random = ((int) ((Math.random() * 9 + 1) * 1000)) + "";
|
|
@@ -139,7 +118,7 @@ public class WxPmController extends ProjBaseAction {
|
139
|
118
|
* @return
|
140
|
119
|
*/
|
141
|
120
|
@ApiOperation("检测手机号")
|
142
|
|
- @PostMapping(value = "/check_mobile_and_code_wx")
|
|
121
|
+ @RequestMapping(value = "/check_mobile_and_code_wx")
|
143
|
122
|
public String check_mobile_and_code_wx(String mobile, String code) {
|
144
|
123
|
Object m = WebTools.getSession().getAttribute(mobile);
|
145
|
124
|
if (ChkTools.isNull(m)) {
|
|
@@ -164,7 +143,7 @@ public class WxPmController extends ProjBaseAction {
|
164
|
143
|
* @return
|
165
|
144
|
*/
|
166
|
145
|
@ApiOperation("查询分类")
|
167
|
|
- @GetMapping(value = "/list_item_classify")
|
|
146
|
+ @RequestMapping(value = "/list_item_classify")
|
168
|
147
|
public String list_item_classify() {
|
169
|
148
|
List<Map<String, Object>> list = pmItemService.list_item_classify();
|
170
|
149
|
LinkedList<Map<String, Object>> list1 = new LinkedList<Map<String, Object>>();
|
|
@@ -203,7 +182,7 @@ public class WxPmController extends ProjBaseAction {
|
203
|
182
|
* @return
|
204
|
183
|
*/
|
205
|
184
|
@ApiOperation("更新用户信息")
|
206
|
|
- @PostMapping(value = "/update_userinfo")
|
|
185
|
+ @RequestMapping(value = "/update_userinfo")
|
207
|
186
|
public String update_userinfo(String userinfo) {
|
208
|
187
|
JSONObject json1 = sessionWxService.getCurrentLoginPersion();
|
209
|
188
|
JSONObject json = JsonUtil.jsonStrToJsonObject(userinfo);
|
|
@@ -233,7 +212,7 @@ public class WxPmController extends ProjBaseAction {
|
233
|
212
|
* @return
|
234
|
213
|
*/
|
235
|
214
|
@ApiOperation("获取我的中拍信息")
|
236
|
|
- @GetMapping(value = "/get_bidderinfo")
|
|
215
|
+ @RequestMapping(value = "/get_bidderinfo")
|
237
|
216
|
public String get_bidderinfo() {
|
238
|
217
|
JSONObject json = sessionWxService.getCurrentLoginPersion();
|
239
|
218
|
String persion_id = json.getString("kid");
|
|
@@ -257,7 +236,7 @@ public class WxPmController extends ProjBaseAction {
|
257
|
236
|
* @return
|
258
|
237
|
*/
|
259
|
238
|
@ApiOperation("去支付保证金")
|
260
|
|
- @PostMapping("/apply")
|
|
239
|
+ @RequestMapping("/apply")
|
261
|
240
|
public String apply(String item_kid) {
|
262
|
241
|
|
263
|
242
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
|
@@ -278,7 +257,7 @@ public class WxPmController extends ProjBaseAction {
|
278
|
257
|
* @return
|
279
|
258
|
*/
|
280
|
259
|
@ApiOperation("去支付成交价")
|
281
|
|
- @PostMapping("/payment")
|
|
260
|
+ @RequestMapping("/payment")
|
282
|
261
|
public String payment(String item_kid, String address_id, String message, BigDecimal red_pack_balance) {
|
283
|
262
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
284
|
263
|
String persion_kid = persion.getString("kid");
|
|
@@ -301,7 +280,7 @@ public class WxPmController extends ProjBaseAction {
|
301
|
280
|
* @return
|
302
|
281
|
*/
|
303
|
282
|
@ApiOperation("查询全部已开拍和未开拍的")
|
304
|
|
- @GetMapping("/list_item")
|
|
283
|
+ @RequestMapping("/list_item")
|
305
|
284
|
public String list_item() {
|
306
|
285
|
List<Map<String, Object>> list = ChkTools.getFileId(pmItemService.list_all_open());
|
307
|
286
|
if (list.size() > 0) {
|
|
@@ -327,7 +306,7 @@ public class WxPmController extends ProjBaseAction {
|
327
|
306
|
* @return
|
328
|
307
|
*/
|
329
|
308
|
@ApiOperation("增加围观人数")
|
330
|
|
- @PostMapping("/add_circusee_num")
|
|
309
|
+ @RequestMapping("/add_circusee_num")
|
331
|
310
|
public String add_circusee_num(String kid) {
|
332
|
311
|
pmItemService.add_circusee_num(kid);// 增加围观次数
|
333
|
312
|
return result.toJSONString();
|
|
@@ -340,7 +319,7 @@ public class WxPmController extends ProjBaseAction {
|
340
|
319
|
* @return
|
341
|
320
|
*/
|
342
|
321
|
@ApiOperation("详情页")
|
343
|
|
- @PostMapping("/select_list")
|
|
322
|
+ @RequestMapping("/select_list")
|
344
|
323
|
public String select_list(String kid) {
|
345
|
324
|
if (ChkUtil.isNull(kid)) {
|
346
|
325
|
super.setTipMsg(false, "商品不存在", Tip.Type.error);
|
|
@@ -414,7 +393,7 @@ public class WxPmController extends ProjBaseAction {
|
414
|
393
|
* @return
|
415
|
394
|
*/
|
416
|
395
|
@ApiOperation("竞价")
|
417
|
|
- @PostMapping("/compete_price")
|
|
396
|
+ @RequestMapping("/compete_price")
|
418
|
397
|
public String compete_price(String pm_item_id, BigDecimal price_bidder) {
|
419
|
398
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
420
|
399
|
String pm_user_id = persion.getString("kid");
|
|
@@ -474,7 +453,7 @@ public class WxPmController extends ProjBaseAction {
|
474
|
453
|
* @return
|
475
|
454
|
*/
|
476
|
455
|
@ApiOperation("待付款")
|
477
|
|
- @GetMapping("/wait_pay_money")
|
|
456
|
+ @RequestMapping("/wait_pay_money")
|
478
|
457
|
public String wait_pay_money() {
|
479
|
458
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
480
|
459
|
String persion_id = persion.getString("kid");
|
|
@@ -494,7 +473,7 @@ public class WxPmController extends ProjBaseAction {
|
494
|
473
|
* @return
|
495
|
474
|
*/
|
496
|
475
|
@ApiOperation("待收货")
|
497
|
|
- @GetMapping("/wait_receive")
|
|
476
|
+ @RequestMapping("/wait_receive")
|
498
|
477
|
public String wait_receive() {
|
499
|
478
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
500
|
479
|
String persion_id = persion.getString("kid");
|
|
@@ -515,7 +494,7 @@ public class WxPmController extends ProjBaseAction {
|
515
|
494
|
* @return
|
516
|
495
|
*/
|
517
|
496
|
@ApiOperation("修改地址")
|
518
|
|
- @GetMapping("/update_address")
|
|
497
|
+ @RequestMapping("/update_address")
|
519
|
498
|
public String update_address() {
|
520
|
499
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
521
|
500
|
String persion_id = persion.getString("kid");
|
|
@@ -535,7 +514,7 @@ public class WxPmController extends ProjBaseAction {
|
535
|
514
|
* @return
|
536
|
515
|
*/
|
537
|
516
|
@ApiOperation("确认收货")
|
538
|
|
- @PostMapping("/verify_receive")
|
|
517
|
+ @RequestMapping("/verify_receive")
|
539
|
518
|
public String verify_receive(String item_kid) {
|
540
|
519
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
541
|
520
|
String persion_id = persion.getString("kid");
|
|
@@ -550,7 +529,7 @@ public class WxPmController extends ProjBaseAction {
|
550
|
529
|
* @return
|
551
|
530
|
*/
|
552
|
531
|
@ApiOperation("获取我正在拍的")
|
553
|
|
- @GetMapping("/get_bidding")
|
|
532
|
+ @RequestMapping("/get_bidding")
|
554
|
533
|
public String get_bidding() {
|
555
|
534
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
556
|
535
|
String persion_id = persion.getString("kid");
|
|
@@ -580,7 +559,7 @@ public class WxPmController extends ProjBaseAction {
|
580
|
559
|
* @return
|
581
|
560
|
*/
|
582
|
561
|
@ApiOperation("等待发货的列表")
|
583
|
|
- @GetMapping("/wait_deliver")
|
|
562
|
+ @RequestMapping("/wait_deliver")
|
584
|
563
|
public String wait_deliver() {
|
585
|
564
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
586
|
565
|
String persion_id = persion.getString("kid");
|
|
@@ -601,7 +580,7 @@ public class WxPmController extends ProjBaseAction {
|
601
|
580
|
* @return
|
602
|
581
|
*/
|
603
|
582
|
@ApiOperation("物流详情")
|
604
|
|
- @PostMapping("/logistics_detail")
|
|
583
|
+ @RequestMapping("/logistics_detail")
|
605
|
584
|
public String logistics_detail(String item_kid) {
|
606
|
585
|
|
607
|
586
|
t_pm_item_submit pm_item_submit = pmItemService.logistics_detail(item_kid);
|
|
@@ -621,7 +600,7 @@ public class WxPmController extends ProjBaseAction {
|
621
|
600
|
* @return
|
622
|
601
|
*/
|
623
|
602
|
@ApiOperation("买家查看的直播间列表")
|
624
|
|
- @GetMapping("/list_live_item")
|
|
603
|
+ @RequestMapping("/list_live_item")
|
625
|
604
|
public String list_live_item() {
|
626
|
605
|
/*
|
627
|
606
|
* String url =
|
|
@@ -652,7 +631,7 @@ public class WxPmController extends ProjBaseAction {
|
652
|
631
|
* @return
|
653
|
632
|
*/
|
654
|
633
|
@ApiOperation("进入直播间详情页面 返回直播间信息和直播间下的所有标的物信息、已开拍的标的物信息 买家报名信息,出价次数")
|
655
|
|
- @PostMapping("/live_item_detail")
|
|
634
|
+ @RequestMapping("/live_item_detail")
|
656
|
635
|
public String live_item_lsit(String live_room_id) {
|
657
|
636
|
List<Map<String, Object>> list = ChkTools.getFileId(pmItemService.live_detail(live_room_id));
|
658
|
637
|
|
|
@@ -677,7 +656,7 @@ public class WxPmController extends ProjBaseAction {
|
677
|
656
|
* @throws ClientProtocolException
|
678
|
657
|
*/
|
679
|
658
|
@ApiOperation("发货")
|
680
|
|
- @PostMapping("/deliver")
|
|
659
|
+ @RequestMapping("/deliver")
|
681
|
660
|
public String deliver(String item_kid, String type_code, long logistics_number, String expressage)
|
682
|
661
|
throws ClientProtocolException, IOException {
|
683
|
662
|
pmProjectItemService.deliver(item_kid, type_code, logistics_number, expressage);
|
|
@@ -718,7 +697,7 @@ public class WxPmController extends ProjBaseAction {
|
718
|
697
|
* @return
|
719
|
698
|
*/
|
720
|
699
|
@ApiOperation("查询所有快递")
|
721
|
|
- @PostMapping("/list_express")
|
|
700
|
+ @RequestMapping("/list_express")
|
722
|
701
|
public String list_express(String pm_item_id) {
|
723
|
702
|
List<Map<String, Object>> list = wxPmService.list_express();
|
724
|
703
|
t_pm_item_submit pm_item_submit = wxPmService.get_address(pm_item_id);
|
|
@@ -732,7 +711,7 @@ public class WxPmController extends ProjBaseAction {
|
732
|
711
|
*
|
733
|
712
|
*/
|
734
|
713
|
@ApiOperation("准备付款 跳到订单页面")
|
735
|
|
- @PostMapping("/prepare_payment")
|
|
714
|
+ @RequestMapping("/prepare_payment")
|
736
|
715
|
public String prepare_payment(String kid) {
|
737
|
716
|
|
738
|
717
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
|
@@ -773,7 +752,7 @@ public class WxPmController extends ProjBaseAction {
|
773
|
752
|
* @return
|
774
|
753
|
*/
|
775
|
754
|
@ApiOperation("获取标的物下的中拍人")
|
776
|
|
- @PostMapping("/get_bid_man")
|
|
755
|
+ @RequestMapping("/get_bid_man")
|
777
|
756
|
public String get_bid_man(String item_kid) {
|
778
|
757
|
|
779
|
758
|
t_pm_item pm_item = wxPmService.get_bid_man(item_kid);
|
|
@@ -792,7 +771,7 @@ public class WxPmController extends ProjBaseAction {
|
792
|
771
|
* @return
|
793
|
772
|
*/
|
794
|
773
|
@ApiOperation("保证金退还列表")
|
795
|
|
- @GetMapping("/list_refund")
|
|
774
|
+ @RequestMapping("/list_refund")
|
796
|
775
|
public String list_refund() {
|
797
|
776
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
798
|
777
|
String persion_id = persion.getString("kid");
|
|
@@ -830,7 +809,7 @@ public class WxPmController extends ProjBaseAction {
|
830
|
809
|
* @return
|
831
|
810
|
*/
|
832
|
811
|
@ApiOperation("发起退款")
|
833
|
|
- @PostMapping("/initiate_refund")
|
|
812
|
+ @RequestMapping("/initiate_refund")
|
834
|
813
|
public String initiate_refund(String item_kid) {
|
835
|
814
|
|
836
|
815
|
return result.toJSONString();
|
|
@@ -846,7 +825,7 @@ public class WxPmController extends ProjBaseAction {
|
846
|
825
|
* @return
|
847
|
826
|
*/
|
848
|
827
|
@ApiOperation("查询拍品状态")
|
849
|
|
- @PostMapping("/check_item_status")
|
|
828
|
+ @RequestMapping("/check_item_status")
|
850
|
829
|
public String check_item_status(String pm_item_id, BigDecimal price, String live_room_id, long chat_time) {
|
851
|
830
|
List<Map<String, Object>> l1 = pmItemService.select_submit_count(pm_item_id);
|
852
|
831
|
t_pm_item_submit_offer pm_item_submit_offer = pmItemService.get_newbigdecimal(pm_item_id);
|
|
@@ -889,7 +868,7 @@ public class WxPmController extends ProjBaseAction {
|
889
|
868
|
* @return
|
890
|
869
|
*/
|
891
|
870
|
@ApiOperation("查询直播拍品状态")
|
892
|
|
- @PostMapping("/check_live_item_status")
|
|
871
|
+ @RequestMapping("/check_live_item_status")
|
893
|
872
|
public String check_live_item_status(String pm_item_id, BigDecimal price, String live_room_id, long chat_time) {
|
894
|
873
|
|
895
|
874
|
t_pm_item_submit_offer pm_item_submit_offer = pmItemService.get_newbigdecimal(pm_item_id);
|
|
@@ -940,7 +919,7 @@ public class WxPmController extends ProjBaseAction {
|
940
|
919
|
* @return
|
941
|
920
|
*/
|
942
|
921
|
@ApiOperation("提交意见")
|
943
|
|
- @PostMapping("/add_feedback_message")
|
|
922
|
+ @RequestMapping("/add_feedback_message")
|
944
|
923
|
public String add_feedback_message(String feedback_message) {
|
945
|
924
|
try {
|
946
|
925
|
SensitiveWord sw = new SensitiveWord("src/main/java/CensorWords");
|
|
@@ -964,7 +943,7 @@ public class WxPmController extends ProjBaseAction {
|
964
|
943
|
* @return
|
965
|
944
|
*/
|
966
|
945
|
@ApiOperation("根据分类查询拍品")
|
967
|
|
- @PostMapping("/select_item_by_chassify")
|
|
946
|
+ @RequestMapping("/select_item_by_chassify")
|
968
|
947
|
public String select_item_by_chassify(String bid_type, String bid_from) {
|
969
|
948
|
System.out.println("bid_type:" + bid_type);
|
970
|
949
|
System.out.println("bid_from:" + bid_from);
|
|
@@ -979,7 +958,7 @@ public class WxPmController extends ProjBaseAction {
|
979
|
958
|
* @return
|
980
|
959
|
*/
|
981
|
960
|
@ApiOperation("轮播图")
|
982
|
|
- @GetMapping("/list_slideshow")
|
|
961
|
+ @RequestMapping("/list_slideshow")
|
983
|
962
|
public String list_slideshow() {
|
984
|
963
|
List<Map<String, Object>> list = slideShowService.list_slideshow();
|
985
|
964
|
result.put("data", list);
|
|
@@ -994,7 +973,7 @@ public class WxPmController extends ProjBaseAction {
|
994
|
973
|
* @return
|
995
|
974
|
*/
|
996
|
975
|
@ApiOperation("设置收藏")
|
997
|
|
- @PostMapping("/add_collect")
|
|
976
|
+ @RequestMapping("/add_collect")
|
998
|
977
|
public String add_collect(String pm_item_id, String form_id) {
|
999
|
978
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
1000
|
979
|
String pm_user_id = persion.getString("kid");
|
|
@@ -1014,7 +993,7 @@ public class WxPmController extends ProjBaseAction {
|
1014
|
993
|
*
|
1015
|
994
|
* @return
|
1016
|
995
|
*/
|
1017
|
|
- @GetMapping("/select_pay_record_by_persion")
|
|
996
|
+ @RequestMapping("/select_pay_record_by_persion")
|
1018
|
997
|
public String get_pay_record() {
|
1019
|
998
|
// JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
1020
|
999
|
// String pm_user_id = persion.getString("kid");
|
|
@@ -1027,7 +1006,7 @@ public class WxPmController extends ProjBaseAction {
|
1027
|
1006
|
* @return
|
1028
|
1007
|
*/
|
1029
|
1008
|
@ApiOperation("查询消息数量")
|
1030
|
|
- @GetMapping("/select_count")
|
|
1009
|
+ @RequestMapping("/select_count")
|
1031
|
1010
|
public String select_count() {
|
1032
|
1011
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
1033
|
1012
|
String persion_id = persion.getString("kid");
|
|
@@ -1046,7 +1025,7 @@ public class WxPmController extends ProjBaseAction {
|
1046
|
1025
|
* @return
|
1047
|
1026
|
*/
|
1048
|
1027
|
@ApiOperation("查询中拍记录")
|
1049
|
|
- @GetMapping("/select_bidding_record")
|
|
1028
|
+ @RequestMapping("/select_bidding_record")
|
1050
|
1029
|
public String select_bidding_record() {
|
1051
|
1030
|
JSONObject persion = sessionWxService.getCurrentLoginPersion();
|
1052
|
1031
|
String pm_user_id = persion.getString("kid");
|