yujian
2020-06-11 7e29ba555f7bb25926fb485418df9716c89a387e
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
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
package com.yeshi.fanli.controller.admin;
 
import java.io.PrintWriter;
import java.lang.reflect.Type;
import java.math.BigDecimal;
import java.text.SimpleDateFormat;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Date;
import java.util.List;
import java.util.Map;
 
import javax.annotation.Resource;
import javax.servlet.http.HttpServletRequest;
 
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.yeshi.utils.IPUtil;
import org.yeshi.utils.JsonUtil;
 
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonElement;
import com.google.gson.JsonPrimitive;
import com.google.gson.JsonSerializationContext;
import com.google.gson.JsonSerializer;
import com.google.gson.reflect.TypeToken;
import com.yeshi.fanli.controller.admin.utils.AdminUtils;
import com.yeshi.fanli.dto.ChartTDO;
import com.yeshi.fanli.entity.admin.count.CountUserInfo;
import com.yeshi.fanli.entity.bus.user.BindingAccount;
import com.yeshi.fanli.entity.bus.user.ForbiddenUserIdentifyCode;
import com.yeshi.fanli.entity.bus.user.ForbiddenUserIdentifyCode.ForbiddenUserIdentifyCodeTypeEnum;
import com.yeshi.fanli.entity.bus.user.ThreeSale;
import com.yeshi.fanli.entity.bus.user.UserExtraTaoBaoInfo;
import com.yeshi.fanli.entity.bus.user.UserInfo;
import com.yeshi.fanli.entity.bus.user.UserInfoExtra;
import com.yeshi.fanli.entity.bus.user.UserInviteValidNum;
import com.yeshi.fanli.entity.bus.user.UserRank;
import com.yeshi.fanli.entity.bus.user.vip.UserVIPInfo;
import com.yeshi.fanli.entity.common.AdminUser;
import com.yeshi.fanli.entity.integral.IntegralDetail;
import com.yeshi.fanli.entity.money.UserMoneyDetail;
import com.yeshi.fanli.entity.money.UserMoneyDetail.UserMoneyDetailTypeEnum;
import com.yeshi.fanli.exception.user.ForbiddenUserIdentifyCodeException;
import com.yeshi.fanli.exception.user.vip.UserVIPInfoException;
import com.yeshi.fanli.log.LogHelper;
import com.yeshi.fanli.service.inter.count.UserInfoCountService;
import com.yeshi.fanli.service.inter.money.UserMoneyDetailService;
import com.yeshi.fanli.service.inter.money.extract.BindingAccountService;
import com.yeshi.fanli.service.inter.user.ForbiddenUserIdentifyCodeService;
import com.yeshi.fanli.service.inter.user.UserAccountService;
import com.yeshi.fanli.service.inter.user.UserActiveLogService;
import com.yeshi.fanli.service.inter.user.UserInfoDeleteRecordService;
import com.yeshi.fanli.service.inter.user.UserInfoExtraService;
import com.yeshi.fanli.service.inter.user.UserInfoService;
import com.yeshi.fanli.service.inter.user.UserRankService;
import com.yeshi.fanli.service.inter.user.integral.IntegralDetailService;
import com.yeshi.fanli.service.inter.user.invite.ThreeSaleSerivce;
import com.yeshi.fanli.service.inter.user.invite.UserInviteValidNumService;
import com.yeshi.fanli.service.inter.user.tb.UserExtraTaoBaoInfoService;
import com.yeshi.fanli.service.inter.user.vip.UserVIPInfoService;
import com.yeshi.fanli.tag.PageEntity;
import com.yeshi.fanli.util.Constant;
import com.yeshi.fanli.util.StringUtil;
import com.yeshi.fanli.util.TimeUtil;
import com.yeshi.fanli.util.annotation.RequestSerializableByKey;
import com.yeshi.fanli.vo.user.UserGoldCoinVO;
import com.yeshi.fanli.vo.user.UserInfoVO;
 
import net.sf.json.JSONArray;
import net.sf.json.JSONObject;
 
@Controller
@RequestMapping("admin/new/api/v1/user")
public class UserInfoAdminController {
    @Resource
    private UserInfoService userInfoService;
 
    @Resource
    private ThreeSaleSerivce threeSaleService;
 
    @Resource
    private BindingAccountService bindingAccountService;
 
    @Resource
    private UserInfoCountService userInfoCountService;
 
    @Resource
    private ForbiddenUserIdentifyCodeService forbiddenUserIdentifyCodeService;
 
    @Resource
    private UserExtraTaoBaoInfoService userExtraTaoBaoInfoService;
 
    @Resource
    private UserInfoExtraService userInfoExtraService;
 
    @Resource
    private UserRankService userRankService;
 
    @Resource
    private UserMoneyDetailService userMoneyDetailService;
 
    @Resource
    private UserInfoDeleteRecordService userInfoDeleteRecordService;
 
    @Resource
    private UserAccountService userAccountService;
    
    @Resource
    private UserActiveLogService userActiveLogService;
    
    @Resource
    private UserVIPInfoService userVIPInfoService;
    
    @Resource
    private IntegralDetailService integralDetailService;
    
    @Resource
    private UserInviteValidNumService userInviteValidNumService;
    
    @Resource
    private ThreeSaleSerivce threeSaleSerivce;
    
    /**
     * 查询用户信息列表 正常用户/异常用户
     * 
     * @param callback
     * @param pageIndex
     * @param key
     *            查询条件
     * @param userType
     *            用户类型:金冠、银冠、铜冠
     * @param days
     *            查询天数
     * @param startTime
     *            注册时间
     * @param endTime
     *            注册时间
     * @param orderMode
     *            排序方式 订单数量 今日订单 累计队员
     * @param out
     */
    @RequestMapping(value = "query")
    public void query(String callback, Integer pageIndex, Integer pageSize, String key, Integer keyType, Integer rank,Integer userType,
            Integer days, String startTime, String endTime, Integer orderMode, Integer type,String level,
            Integer activeCode, PrintWriter out) {
        try {
            if (type == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("用户类型type不能为空"));
                return;
            }
 
            if (pageIndex == null)
                pageIndex = 1;
 
            if (pageSize == null)
                pageSize = Constant.PAGE_SIZE;
 
            Integer orderField = null;
            if (orderMode != null) {
                if (orderMode == 1 || orderMode == 2) {
                    orderField = orderMode;
                    orderMode = 1;
                } else if (orderMode == 3 || orderMode == 4) {
                    orderField = orderMode;
                    orderMode = 2;
                } else if (orderMode == 5 || orderMode == 6) {
                    orderField = orderMode;
                    orderMode = 3;
                }
            }
 
            String userRank = null;
            if (rank != null) {
                switch (rank) {
                case 1:
                    userRank = "青铜";
                    break;
                case 2:
                    userRank = "白银";
                    break;
                case 3:
                    userRank = "黄金";
                    break;
                case 4:
                    userRank = "铂金";
                    break;
                default:
                    break;
                }
            }
 
            List<UserInfoVO> userList = userInfoService.query((pageIndex - 1) * pageSize, pageSize, type, key, keyType,
                    userRank, days, startTime, endTime, orderField, orderMode,userType, level, activeCode);
 
            if (userList == null || userList.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂无相关数据"));
                return;
            }
 
            long count = userInfoService.queryCount(type, key, keyType, userRank, days, startTime, endTime,userType, level, activeCode);
 
            int totalPage = (int) (count % pageSize == 0 ? count / pageSize : count / pageSize + 1);
            PageEntity pe = new PageEntity(pageIndex, pageSize, count, totalPage);
 
            GsonBuilder gsonBuilder = new GsonBuilder();
            gsonBuilder.serializeNulls();
            Gson gson = gsonBuilder.create();
 
            JSONObject data = new JSONObject();
            data.put("pe", pe);
            data.put("resultList", gson.toJson(userList));
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
        }
    }
 
    /**
     * 用户基础信息查询
     * @param callback
     * @param pageIndex
     * @param pageSize
     * @param key
     * @param keyType
     * @param rank
     * @param userType
     * @param days
     * @param startTime
     * @param endTime
     * @param type
     * @param level
     * @param activeCode
     * @param out
     */
    @RequestMapping(value = "queryInfo")
    public void queryInfo(String callback, Integer pageIndex, Integer pageSize, String key, Integer keyType, Integer rank,Integer userType,
            Integer days, String startTime, String endTime, Integer state,String level,
            Integer activeCode, PrintWriter out) {
        try {
            if (pageIndex == null)
                pageIndex = 1;
 
            if (pageSize == null)
                pageSize = Constant.PAGE_SIZE;
 
            String userRank = null;
            if (rank != null) {
                switch (rank) {
                case 1:
                    userRank = "青铜";
                    break;
                case 2:
                    userRank = "白银";
                    break;
                case 3:
                    userRank = "黄金";
                    break;
                case 4:
                    userRank = "铂金";
                    break;
                default:
                    break;
                }
            }
 
            List<UserInfoVO> userList = userInfoService.queryInfo((pageIndex - 1) * pageSize, pageSize, state, key, keyType,
                    userRank, days, startTime, endTime, userType, level, activeCode);
 
            if (userList == null || userList.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂无相关数据"));
                return;
            }
 
            long count = userInfoService.countInfo(state, key, keyType, userRank, days, startTime, endTime,userType, level, activeCode);
 
            int totalPage = (int) (count % pageSize == 0 ? count / pageSize : count / pageSize + 1);
            PageEntity pe = new PageEntity(pageIndex, pageSize, count, totalPage);
 
            GsonBuilder gsonBuilder = new GsonBuilder();
            gsonBuilder.serializeNulls();
            Gson gson = gsonBuilder.create();
 
            JSONObject data = new JSONObject();
            data.put("pe", pe);
            data.put("resultList", gson.toJson(userList));
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
        }
    }
    
    
    /**
     * 资金统计
     * @param callback
     * @param uid
     * @param out
     */
    @RequestMapping(value = "statisticsMoney")
    public void statisticsMoney(String callback, Long uid, PrintWriter out) {
        try {
            UserInfo user = userInfoService.getUserByIdWithMybatis(uid);
            if (user == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("该用户ID不存在"));
                return;
            }
            
            Date minDate = null;
            Date maxDate = null;
            long timeStamp = System.currentTimeMillis();
            Calendar calendar = Calendar.getInstance();
            calendar.setTimeInMillis(timeStamp);
            List<UserMoneyDetailTypeEnum> typeList = new ArrayList<>();
            typeList.add(UserMoneyDetailTypeEnum.extract);
            typeList.add(UserMoneyDetailTypeEnum.extractNew);
            typeList.add(UserMoneyDetailTypeEnum.extractVerify);
            typeList.add(UserMoneyDetailTypeEnum.extractVerifyNew);
            typeList.add(UserMoneyDetailTypeEnum.extractReject);
            typeList.add(UserMoneyDetailTypeEnum.extractAutoWX);
            minDate = new Date(0L);
            maxDate = new Date(timeStamp);
            // 累计成功提现
            BigDecimal totalExtractMoney = userMoneyDetailService.statisticUserTypeMoneyWithDate(uid, typeList, minDate,
                    maxDate, 1).abs();
            // 提现中金额
            BigDecimal extractingMoney = extractService.sumVerifyingMoney(uid);
            
            // 全部未到账
            minDate = new Date(0);
            maxDate = new Date(timeStamp);
            BigDecimal unRecievedMoney = hongBaoV2Service.getUnRecievedMoneyWithCreateTime(uid, minDate, maxDate);
            
            JSONObject data = new JSONObject();
            data.put("totalExtractMoney", totalExtractMoney);
            data.put("extractingMoney", extractingMoney);
            data.put("balanceMoney", user.getMyHongBao());
            data.put("unRecievedMoney", unRecievedMoney);
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
            e.printStackTrace();
        }
    }
    
    
    /**
     * 权益统计
     * @param callback
     * @param uid
     * @param out
     */
    @RequestMapping(value = "statisticsGoldCoin")
    public void statisticsEquity(String callback, Long uid, PrintWriter out) {
        try {
            int goldCoin = 0;
            UserInfoExtra userInfoExtra = userInfoExtraService.getUserInfoExtra(uid);
            if (userInfoExtra != null) {
                goldCoin = userInfoExtra.getGoldCoin();
            }
            
            JSONObject data = new JSONObject();
            data.put("goldCoin", goldCoin);
            data.put("exchangeGoldCoin",new BigDecimal(integralDetailService.sumUseGoldCoin(uid)).abs());
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
            e.printStackTrace();
        }
    }
    
    /**
     * 统计今日用户总情况
     * 
     * @param callback
     * @param out
     */
    @RequestMapping(value = "countInfo")
    public void countInfo(String callback, PrintWriter out) {
        try {
 
            // 累计用户数量
            long totalUser = userInfoCountService.countNewUser(null, null);
            // 流失用户数量(180天未使用登录并且无任何资金流动的账号数量)
            long loseUser = userInfoCountService.countLoseUser(180);
            // 累计有购买用户数
            long orderUser = userInfoCountService.countHasOrderUser();
 
            // 总数-普通用户
            long countNormal = 0;
            // 总数-铜用户
            long countCuprum = 0;
            // 总数-银用户
            long countSilver = 0;
            // 总数-金用户
            long countGold = 0;
 
            List<UserRank> listRank = userRankService.getAllRank();
            if (listRank != null && listRank.size() > 0) {
                for (UserRank userRank : listRank) {
                    Long id = userRank.getId();
                    String name = userRank.getName();
                    if ("青铜".equals(name)) {
                        continue;
                    }
 
                    long count = userInfoExtraService.countByRankId(id);
                    if ("白银".equals(name)) {
                        countCuprum = count;
                    } else if ("黄金".equals(name)) {
                        countSilver = count;
                    } else if ("铂金".equals(name)) {
                        countGold = count;
                    }
                }
            }
 
            // 普通用户计算
            countNormal = totalUser - (countCuprum + countSilver + countGold);
 
            JSONObject data = new JSONObject();
            data.put("totalUser", totalUser);
            data.put("loseUser", loseUser);
            data.put("orderUser", orderUser);
            data.put("countNormal", countNormal);
            data.put("countCuprum", countCuprum);
            data.put("countSilver", countSilver);
            data.put("countGold", countGold);
 
            /*
             * // 统计所有总金额 BigDecimal countTotalMoney =
             * userInfoCountService.countAllMoney(null);
             * 
             * // 统计所有可提现金额 String minMoney =
             * configService.get(Constant.EXTRACT_MIN_MONEY); if (minMoney ==
             * null) { minMoney = "20"; } double min =
             * Double.parseDouble(minMoney); BigDecimal countCanAssets =
             * userInfoCountService.countAllMoney(min);
             * data.put("countTotalMoney", countTotalMoney);
             * data.put("countCanAssets", countCanAssets);
             */
 
            // 今日新增用户数量
            long todayUser = userInfoCountService.countNewUser(1, null);
            // 本月新增用户数量
            long monthUser = userInfoCountService.countNewUser(null, 1);
            data.put("todayUser", todayUser);
            data.put("monthUser", monthUser);
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
        }
    }
 
    /**
     * 
     * @param data
     * @param uid
     *            用户ID
     * @param type
     *            需要解绑的账户类型
     */
    @RequestMapping("unBindUserInfo")
    public void unBindUserInfo(String callback, Long uid, String typeArray, PrintWriter out) {
        try {
            if (typeArray == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("没有可更改的内容"));
                return;
            }
 
            Gson gson = new Gson();
            List<Integer> list = gson.fromJson(typeArray, new TypeToken<ArrayList<Integer>>() {
            }.getType());
            if (list == null || list.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("没有可更改的内容"));
                return;
            }
 
            if (uid == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("用户id不能为空"));
                return;
            }
 
            UserInfo find = userInfoService.getUserById(uid);
            if (find == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("用户被封禁或不存在"));
                return;
            }
 
            for (Integer type : list) {
                String openid = find.getOpenid();
                String wxUnionId = find.getWxUnionId();
                String phone = find.getPhone();
                if (1 == type) {
                    if (StringUtil.isNullOrEmpty(openid)) {
                        JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("当前用户未绑定淘宝!"));
                        return;
                    } else {
                        userInfoService.deleteBindInfo(find, type);
                    }
                } else if (2 == type) {
                    if (StringUtil.isNullOrEmpty(wxUnionId)) {
                        JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("当前用户未绑定微信!"));
                        return;
                    } else {
                        userInfoService.deleteBindInfo(find, type);
                    }
                } else if (3 == type) {
                    if (StringUtil.isNullOrEmpty(phone)) {
                        JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("当前用户未绑定手机号!"));
                        return;
                    } else {
                        userInfoService.deleteBindInfo(find, type);
                    }
                } else if (4 == type) {
                    // 查询支付宝绑定
                    BindingAccount account = bindingAccountService.getBindingAccountByUidAndType(uid,
                            BindingAccount.TYPE_ALIPAY);
                    if (account == null) {
                        JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("当前用户未绑定支付宝!"));
                        return;
                    } else {
                        bindingAccountService.deleteBindingAccount(account);
                    }
                } else {
                    JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("账户类型不匹配!"));
                    return;
                }
            }
 
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("解绑成功"));
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
        }
    }
    
    
 
    /**
     * 修改用户备注
     * @param callback
     * @param uid
     * @param mark
     * @param out
     */
    @RequestMapping("addUserMark")
    public void addUserMark(String callback, Long uid, String mark, PrintWriter out) {
        try {
            if (uid == null || uid <= 0 || StringUtil.isNullOrEmpty(mark))
                return;
            UserInfoExtra userInfoExtra = userInfoExtraService.getUserInfoExtra(uid);
            if (userInfoExtra == null) 
                return;
            UserInfoExtra updateExtra = new UserInfoExtra();
            updateExtra.setId(userInfoExtra.getId());
            updateExtra.setMark(mark);
            userInfoExtraService.saveUserInfoExtra(updateExtra);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
 
    /**
     * 删除用户-改变其状态
     * @param callback
     * @param idArray
     * @param out
     */
    @RequestMapping(value = "deleteUser")
    public void delete(String callback, String idArray, HttpServletRequest request,  PrintWriter out) {
        try {
            AdminUser admin = (AdminUser) request.getSession().getAttribute(Constant.SESSION_ADMIN);
            if (admin == null) {
                out.print(JsonUtil.loadJSONP(callback, JsonUtil.loadFalseResult("当前账户失效,请重新登陆。")));
                return;
            }
            
            if (StringUtil.isNullOrEmpty(idArray)) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请选择操作的数据"));
                return;
            }
 
            Gson gson = new Gson();
            List<Long> list = gson.fromJson(idArray, new TypeToken<ArrayList<Long>>() {}.getType());
            if (list == null || list.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("未检测到删除的数据"));
                return;
            }
            
            for (Long id: list) {
                UserInfo user = new UserInfo(id);
                user.setState(UserInfo.STATE_DELETE);
                user.setStateDesc(admin.getId()+" " + admin.getName()+ "后台手动删除");
                userInfoService.updateByPrimaryKeySelective(user);
            }
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("成功删除"));
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("删除失败"));
            e.printStackTrace();
        }
    }
    
    
    
    /**
     * 封禁用户ID
     * 
     * @param callback
     * @param uid
     * @param out
     */
    @RequestMapping(value = "forbiddenUser")
    public void forbiddenUser(String callback, Long uid, HttpServletRequest request, PrintWriter out) {
        try {
            if (uid == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请传递正确数据"));
                return;
            }
 
            UserInfo currentInfo = userInfoService.selectByPKey(uid);
            if (currentInfo == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("该用户已不存在"));
                return;
            }
 
            AdminUser admin = (AdminUser) request.getSession().getAttribute(Constant.SESSION_ADMIN);
            if (admin == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("登录失效,请登录"));
                return;
            }
 
            String reason = "后台封禁,操作人:" + admin.getId() + "-" + admin.getName();
            userAccountService.forbiddenUserAll(uid, reason);
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("用户封禁成功"));
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作失败"));
        }
    }
 
    /**
     * 解除封禁用户ID
     * 
     * @param callback
     * @param uid
     * @param out
     */
    @RequestMapping(value = "relieveForbiddenUser")
    public void relieveForbiddenUser(String callback, Long uid, PrintWriter out) {
        try {
            if (uid == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请传递正确数据"));
                return;
            }
 
            UserInfo currentInfo = userInfoService.selectByPKey(uid);
            if (currentInfo == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("该用户已不存在"));
                return;
            }
 
            currentInfo.setState(UserInfo.STATE_NORMAL);
            currentInfo.setStateDesc("管理员已解封");
            userInfoService.updateByPrimaryKeySelective(currentInfo);
 
            // 解封微信
            ForbiddenUserIdentifyCode forbiddenUserIdentifyCode = forbiddenUserIdentifyCodeService
                    .listByTypeAndIdentifyCode(ForbiddenUserIdentifyCodeTypeEnum.wxUnionId, currentInfo.getWxUnionId());
            if (forbiddenUserIdentifyCode != null)
                forbiddenUserIdentifyCodeService.delete(forbiddenUserIdentifyCode);
 
            // 解封手机
            forbiddenUserIdentifyCode = forbiddenUserIdentifyCodeService
                    .listByTypeAndIdentifyCode(ForbiddenUserIdentifyCodeTypeEnum.phone, currentInfo.getPhone());
            if (forbiddenUserIdentifyCode != null)
                forbiddenUserIdentifyCodeService.delete(forbiddenUserIdentifyCode);
 
            // 解封淘宝
            UserExtraTaoBaoInfo taoBao = userExtraTaoBaoInfoService.getByUid(uid);
            if (taoBao != null && !StringUtil.isNullOrEmpty(taoBao.getTaoBaoUid())) {
                forbiddenUserIdentifyCode = forbiddenUserIdentifyCodeService
                        .listByTypeAndIdentifyCode(ForbiddenUserIdentifyCodeTypeEnum.taobaoUid, taoBao.getTaoBaoUid());
                if (forbiddenUserIdentifyCode != null)
                    forbiddenUserIdentifyCodeService.delete(forbiddenUserIdentifyCode);
            }
 
            // 解封支付宝
            List<BindingAccount> list = bindingAccountService.getBindingAccountByUid(uid);
            if (list != null) {
                for (BindingAccount ba : list) {
                    forbiddenUserIdentifyCode = forbiddenUserIdentifyCodeService.listByTypeAndIdentifyCode(
                            ForbiddenUserIdentifyCodeTypeEnum.alipayAccount, ba.getAccount());
                    if (forbiddenUserIdentifyCode != null)
                        forbiddenUserIdentifyCodeService.delete(forbiddenUserIdentifyCode);
                }
            }
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("用户解封成功"));
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作失败"));
        }
    }
 
    /**
     * 用户账号- 封禁/解封
     * 
     * @param callback
     * @param code
     * @param type
     *            1("微信unionId"), 2("淘宝ID"), 3("手机号"), 4("支付宝账号");
     * @param out
     */
    @RequestMapping(value = "saveForbiddenInfo")
    public void saveForbiddenInfo(String callback, String code, Integer type, PrintWriter out) {
        try {
            if (code == null || code.trim().length() == 0 || type == null || "NULL".equalsIgnoreCase(code)) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("参数不能为空"));
                return;
            }
 
            forbiddenUserIdentifyCodeService.saveForbiddenInfo(code, type);
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("修改成功"));
        } catch (ForbiddenUserIdentifyCodeException e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(e.getMsg()));
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
        }
    }
 
     
 
    /**
     * 队员关系
     * 
     * @param pageIndex
     * @param key
     * @param state
     * @param startTime
     * @param endTime
     * @param out
     */
    @RequestMapping(value = "getRelationList")
    public void getRelationList(String callback, Integer pageIndex, Integer pageSize, Long uid, Integer type,
            Integer state, String startTime, String endTime, Integer validState, PrintWriter out) {
 
        if (pageIndex == null || pageIndex < 1) {
            pageIndex = 1;
        }
 
        if (pageSize == null || pageSize < 1) {
            pageSize = Constant.PAGE_SIZE;
        }
 
        try {
 
            if (!StringUtil.isNullOrEmpty(endTime)) {
                SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
                Date enddate = sdf.parse(endTime);
                Calendar c = Calendar.getInstance();
                c.setTime(enddate);
                c.add(Calendar.DAY_OF_MONTH, 1);// 今天+1天
                endTime = sdf.format(c.getTime());
            }
 
            List<ThreeSale> listQuery = null;
            if (type == 0) {
                // 上级用户
                if (uid == null) {
                    JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("查询上级需输入用户id"));
                    return;
                }
                listQuery = threeSaleService.listSuperiorQuery((pageIndex - 1) * pageSize, pageSize, state, uid);
            } else if (type == 1) {
                // 一级用户
                listQuery = threeSaleService.listFirstTeamQuery((pageIndex - 1) * pageSize, pageSize, uid, state,
                        startTime, endTime, validState);
            } else if (type == 2) {
                // 二级用户
                listQuery = threeSaleService.listSecondTeamQuery((pageIndex - 1) * pageSize, pageSize, uid, state,
                        startTime, endTime, validState);
            }
 
            if (listQuery == null || listQuery.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂无数据"));
                return;
            }
 
            for (ThreeSale threeSale : listQuery) {
                // 用户信息
                UserInfo boss = threeSale.getBoss();
                threeSale.setBoss(userInfoService.selectByPKey(boss.getId()));
                
                UserInfo worker = threeSale.getWorker();
                threeSale.setWorker(userInfoService.selectByPKey(worker.getId()));
                
                
                Integer expire = threeSale.getExpire();
                if (threeSale.getState()) {
                    threeSale.setExpire(1); // 邀请成功
                } else {
                    if (expire != null && expire == 1) {
                        threeSale.setExpire(2); // 邀请失效
                    } else {
                        threeSale.setExpire(0);// 已邀请
                    }
                }
            }
            
 
            long count = 0;
            if (type == 0) {
                // 上级用户
                count = threeSaleService.countSuperiorQuery(state, uid);
            } else if (type == 1) {
                // 一级用户
                count = threeSaleService.countFirstTeamQuery(uid, state, startTime, endTime, validState);
            } else if (type == 2) {
                // 二级用户
                count = threeSaleService.countSecondTeamQuery(uid, state, startTime, endTime, validState);
            }
 
            int totalPage = (int) (count % pageSize == 0 ? count / pageSize : count / pageSize + 1);
            PageEntity pe = new PageEntity(pageIndex, pageSize, count, totalPage);
 
            JSONObject data = new JSONObject();
            data.put("pe", pe);
            data.put("result_list", listQuery);
 
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
 
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("查询失败"));
            e.printStackTrace();
        }
    }
 
    /**
     * 用户账户明细
     * 
     * @param callback
     * @param pageIndex
     * @param pageSize
     * @param id
     * @param out
     */
    @RequestMapping(value = "getAccountDetails")
    public void getAccountDetails(String callback, Integer pageIndex, Integer pageSize, Long uid, PrintWriter out) {
        if (pageIndex == null || pageIndex < 1) {
            pageIndex = 1;
        }
 
        if (pageSize == null || pageSize < 1) {
            pageSize = Constant.PAGE_SIZE;
        }
 
        if (uid == null) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请传递正确数据"));
            return;
        }
 
        try {
            List<UserMoneyDetail> userMoneyDetailsList = userMoneyDetailService.listByUidWithState(uid, pageIndex,
                    pageSize);
            if (userMoneyDetailsList == null || userMoneyDetailsList.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂无数据"));
                return;
            }
 
            long count = userMoneyDetailService.countByUidWithState(uid);
 
            int totalPage = (int) (count % pageSize == 0 ? count / pageSize : count / pageSize + 1);
            PageEntity pe = new PageEntity(pageIndex, pageSize, count, totalPage);
 
            Gson gson = new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss").create();
            JSONObject data = new JSONObject();
            data.put("pe", pe);
            data.put("result_list", gson.toJson(userMoneyDetailsList));
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("查询失败"));
        }
    }
 
    /**
     * 根据渠道 统计当日新增用户数量
     * 
     * @param channelArray
     *            名字数组
     * @param dateType
     *            类型 1日 2月 3年
     * @param year
     *            2018
     * @param startTime
     *            2018-12-01
     * @param endTime
     *            2018-12-01
     * @param out
     */
    @RequestMapping(value = "getNewUserCharts")
    public void getNewUserCharts(String callback, String channelArray, Integer dateType, String year, String startTime,
            String endTime, PrintWriter out) {
        try {
            String validateMsg = AdminUtils.validateParams(dateType, startTime, endTime);
            if (validateMsg != null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(validateMsg));
                return;
            }
            
            if (dateType != 1 && (!StringUtil.isNullOrEmpty(startTime) || !StringUtil.isNullOrEmpty(endTime))) {
                startTime = null;
                endTime = null;
            }
 
            Date beginDate = null;
            Date endDate = null;
            
            if (dateType == 1) {
                beginDate = TimeUtil.parse(startTime);
                endDate = TimeUtil.parse(endTime);
            } else if (dateType == 2) {
                Calendar calendar=Calendar.getInstance();  
                int currentYear = calendar.get(Calendar.YEAR);
                if (!StringUtil.isNullOrEmpty(year)) {
                    currentYear = Integer.parseInt(year);
                }
                calendar.clear();
                calendar.set(Calendar.YEAR, currentYear);
                beginDate =calendar.getTime();
        
                calendar.clear();
                calendar.set(Calendar.YEAR, currentYear);
                calendar.roll(Calendar.DAY_OF_YEAR, -1);
                endDate=calendar.getTime(); 
            } else if (dateType == 3) {
                beginDate = TimeUtil.parse("2018-01-01");
                endDate = new Date();
            }
            Gson gson = new Gson();
            List<String> dateList = AdminUtils.getDateList(dateType, startTime, endTime, year);
            
            // 渠道
            List<String> channelList = null;
            if (channelArray != null && channelArray.trim().length() > 0) {
                channelList = gson.fromJson(channelArray, new TypeToken<ArrayList<String>>() {
                }.getType());
            }
            
            JSONArray line_list = new JSONArray();
            
            if (channelList != null && channelList.size() > 0) {
                for (String channel : channelList) {
                    List<Object> list = getNewUserData(dateList, dateType, beginDate, endDate, channel);
                    JSONObject innerList = new JSONObject();
                    innerList.put("name", channel);
                    innerList.put("data", gson.toJson(list));
                    line_list.add(innerList);
                }
            } else {
                List<Object> list = getNewUserData(dateList, dateType, beginDate, endDate, null);
                JSONObject innerList = new JSONObject();
                innerList.put("name", "全部");
                innerList.put("data", gson.toJson(list));
                line_list.add(innerList);
            }
 
            JSONObject data = new JSONObject();
            data.put("line_list", line_list);
            data.put("xAxis_list", gson.toJson(dateList));
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("系统异常"));
            e.printStackTrace();
        }
    }
    
    
    private List<Object> getNewUserData(List<String> dateList, Integer dateType, Date beginDate, Date endDate, String channel) {
        List<Object> list = new ArrayList<>();
        List<CountUserInfo> listHistory = userInfoCountService.getNewUserData(beginDate, endDate, channel);
        for (String date: dateList) {
            int value = 0;
            if (listHistory != null) {
                for (CountUserInfo history: listHistory) {
                    if (dateType == 1) {
                        String gernalTime = TimeUtil.getGernalTime(history.getDay().getTime());
                        if (gernalTime.equalsIgnoreCase(date)) {
                            value += history.getNum();
                            continue;
                        }
                    } else if (dateType == 2){
                        String gernalTime = TimeUtil.getMonthOnlyMM(history.getDay());
                        if(gernalTime.startsWith("0")) {
                            gernalTime = gernalTime.substring(1, 2);
                        }
                            
                        if (gernalTime.equalsIgnoreCase(date)) {
                            value +=  history.getNum();
                            continue;
                        }
                    } else if (dateType == 3) {
                        String gernalTime = TimeUtil.getYearOnlyYYYY(history.getDay());
                        if (gernalTime.equalsIgnoreCase(date)) {
                            value +=  history.getNum();
                            continue;
                        }
                    }
                }
            }
            list.add(value + "");
        }
        
        return list;
    }
 
    /**
     * 根据渠道 统计当日新增用户数量
     * 
     * @param channelArray
     *            名字数组
     * @param dateType
     *            类型 1日 2月 3年
     * @param year
     *            2018
     * @param startTime
     *            2018-12-01
     * @param endTime
     *            2018-12-01
     * @param out
     */
    @RequestMapping(value = "getTodayBuyRate")
    public void getTodayBuyRate(String callback, String channelArray, Integer dateType, String year, String startTime,
            String endTime, Integer orderNum, PrintWriter out) {
 
        String validateMsg = AdminUtils.validateParams(dateType, startTime, endTime);
        if (validateMsg != null) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(validateMsg));
            return;
        }
 
        if (dateType == 2 && StringUtil.isNullOrEmpty(year)) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("请输入年份"));
            return;
        }
 
        if (dateType != 1 && (!StringUtil.isNullOrEmpty(startTime) || !StringUtil.isNullOrEmpty(endTime))) {
            startTime = null;
            endTime = null;
        }
 
        List<String> channelList = null;
        if (channelArray != null && channelArray.trim().length() > 0) {
            Gson gson = new Gson();
            channelList = gson.fromJson(channelArray, new TypeToken<ArrayList<String>>() {
            }.getType());
        }
 
        if (channelList == null || channelList.size() == 0) {
            channelList = new ArrayList<String>();
            channelList.add("all");
        }
 
        if (dateType == 1 && year != null) {
            year = null; // 设置为空
        } else if (dateType == 2) {
            if (startTime != null)
                startTime = null;
 
            if (endTime != null)
                endTime = null;
 
        } else if (dateType == 3) {
            if (year != null)
                year = null;
 
            if (startTime != null)
                startTime = null;
 
            if (endTime != null)
                endTime = null;
        }
 
        try {
 
            Gson gson = new Gson();
            Object objectDate = null;
            List<String> dateList = AdminUtils.getDateList(dateType, startTime, endTime, year);
 
            JSONArray line_list = new JSONArray();
            for (String channel : channelList) {
 
                List<ChartTDO> list = userInfoCountService.getTodayBuyRate(channel, dateType, year,
                        startTime, endTime);
 
                if ("all".equalsIgnoreCase(channel)) {
                    channel = "总计";
                }
 
                JSONObject innerList = new JSONObject();
                innerList.put("name", channel);
 
                if (dateType != 3) {
                    innerList.put("data", gson.toJson(AdminUtils.dayOrMonthDataFactory(dateType, dateList, list)));
                } else {
                    // 年视图
                    Map<String, Object> map = AdminUtils.yearsDataFactory(list);
 
                    if (objectDate == null) {
                        objectDate = map.get("date");
                    }
                    innerList.put("data", gson.toJson(map.get("value")));
                }
 
                line_list.add(innerList);
            }
 
            JSONObject data = new JSONObject();
            if (objectDate != null) {
                data.put("xAxis_list", gson.toJson(objectDate));
            } else {
                data.put("xAxis_list", gson.toJson(dateList));
            }
 
            data.put("line_list", line_list);
 
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
 
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
            e.printStackTrace();
        }
 
    }
 
    /**
     * 当周产生3单的新增用户概率
     * 
     * @param callback
     * @param channelArray
     *            渠道名称
     * @param startTime
     * @param endTime
     * @param orderNum
     *            订单数量
     * @param out
     */
    @RequestMapping(value = "getWeekBuyRate")
    public void getWeekBuyRate(String callback, String channelArray, String startTime, String endTime, Integer orderNum,
            PrintWriter out) {
 
        if (StringUtil.isNullOrEmpty(startTime) || StringUtil.isNullOrEmpty(endTime)) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("当周订单统计对应时间区域不能为空"));
            return;
        }
 
        List<String> channelList = null;
        if (channelArray != null && channelArray.trim().length() > 0) {
            Gson gson = new Gson();
            channelList = gson.fromJson(channelArray, new TypeToken<ArrayList<String>>() {
            }.getType());
        }
 
        if (channelList == null || channelList.size() == 0) {
            channelList = new ArrayList<String>();
            channelList.add("all");
        }
 
        if (orderNum < 1) {
            orderNum = 1;
        }
 
        try {
 
            Gson gson = new Gson();
            List<String> dateList = AdminUtils.getDateList(1, startTime, endTime, null);
 
            JSONArray line_list = new JSONArray();
            for (String channel : channelList) {
 
                List<Object> list = userInfoCountService.getWeekBuyRate(channel, startTime, endTime, orderNum,
                        dateList);
 
                if ("all".equalsIgnoreCase(channel)) {
                    channel = "总计";
                }
 
                JSONObject innerList = new JSONObject();
                innerList.put("name", channel);
                innerList.put("data", gson.toJson(list));
                line_list.add(innerList);
            }
 
            JSONObject data = new JSONObject();
            data.put("xAxis_list", gson.toJson(dateList));
            data.put("line_list", line_list);
 
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
 
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
            e.printStackTrace();
        }
    }
 
    
    /**
     * 获取金币排行榜
     * @param callback
     * @param pageIndex
     * @param pageSize
     * @param type
     * @param out
     */
    @RequestMapping(value = "getGoldTop")
    public void getGoldTop(String callback, Integer pageIndex, Integer pageSize, Integer type, String key,
            PrintWriter out) {
        if (type == null) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("type不能为空"));
            return;
        }
        
        if (pageIndex == null)
            pageIndex = 1;
 
        if (pageSize == null)
            pageSize = 50;
        
        long count = 0;
        List<UserGoldCoinVO> list = null;
        if (type == 0) {
            count = userInfoCountService.countByHasGoldCoin(key);
            list = userInfoCountService.listByHasGoldCoin((pageIndex - 1) * pageSize, pageSize, key);
        } else if (type == 1 || type == 2) {
            count = userInfoCountService.countByUserGoldCoin(type, key);
            list = userInfoCountService.listByUserGoldCoin((pageIndex - 1) * pageSize, pageSize, type, key);
        }
        
        if(list == null)
            list = new ArrayList<>();
        
 
        int totalPage = (int) (count % pageSize == 0 ? count / pageSize : count / pageSize + 1);
        PageEntity pe = new PageEntity(pageIndex, pageSize, count, totalPage);
 
        JSONObject data = new JSONObject();
        data.put("pe", pe);
        data.put("list", list);
        JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
    }
    
    
    /**
     * 获取金币排行榜
     * @param callback
     * @param pageIndex
     * @param pageSize
     * @param type
     * @param out
     */
    @RequestMapping(value = "getGoldCoinRecord")
    public void getGoldCoinRecord(String callback, Integer pageIndex, Integer pageSize, String key,    PrintWriter out) {
        if (pageIndex == null)
            pageIndex = 1;
        
        if (pageSize == null)
            pageSize = 20;
        
        List<IntegralDetail> list = integralDetailService.listQuery((pageIndex-1)* pageSize, pageSize, key);
        if (list == null || list.size() == 0) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂无相关信息"));
            return;
        }
        
        for (IntegralDetail integralDetail: list) {
            Long uid = integralDetail.getUid();
            UserInfo userInfo = userInfoService.getUserById(uid);
            if (userInfo != null) {
                integralDetail.setNickName(userInfo.getNickName());
                integralDetail.setPortrait(userInfo.getPortrait());
            }
        }
        
        long count = integralDetailService.countQuery(key);
        int totalPage = (int) (count % pageSize == 0 ? count / pageSize : count / pageSize + 1);
        PageEntity pe = new PageEntity(pageIndex, pageSize, count, totalPage);
        
        GsonBuilder gsonBuilder = new GsonBuilder();
        gsonBuilder.serializeNulls();
        Gson gson = gsonBuilder.setDateFormat("yyyy/MM/dd HH:mm:ss").create();
        
 
        JSONObject data = new JSONObject();
        data.put("pe", pe);
        data.put("list", gson.toJson(list));
        JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
    }
    
    
    
    /**
     * 
     * @param callback
     * @param pageIndex
     * @param pageSize
     * @param key 搜索:暂只提供uid
     * @param state 状态:
     * @param out
     */
    @RequestMapping(value = "queryVip")
    public void queryVip(String callback, Integer pageIndex, Integer pageSize, String key, Integer state, PrintWriter out) {
        try {
            List<UserVIPInfo> list = userVIPInfoService.listQuery(pageIndex, pageSize, key, state);
            if (list == null || list.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂无数据"));
                return;
            }
            
            long count = userVIPInfoService.countQuery(key, state);
            int totalPage = (int) (count % pageSize == 0 ? count / pageSize : count / pageSize + 1);
            PageEntity pe = new PageEntity(pageIndex, pageSize, count, totalPage);
 
            GsonBuilder gsonBuilder = new GsonBuilder();
            gsonBuilder.serializeNulls();
            Gson gson = gsonBuilder.setDateFormat("yyyy/MM/dd HH:mm:ss").create();
 
            JSONObject data = new JSONObject();
            data.put("pe", pe);
            data.put("result_list", gson.toJson(list));
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
        } catch (Exception e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作异常"));
            e.printStackTrace();
        }
    }
 
    
 
    /**
     * 超级会员升级通过
     * @param callback
     * @param id
     * @param out
     * @param request
     */
    @RequestSerializableByKey(key = "'passVIP-' +#id")
    @RequestMapping(value = "passVIP")
    public void passVIP(String callback, Long id,  PrintWriter out, HttpServletRequest request) {
        try {
            /* 检验是否登陆 */
            AdminUser admin = (AdminUser) request.getSession().getAttribute(Constant.SESSION_ADMIN);
            if (admin == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("当前账户失效,请重新登陆。"));
                return;
            }
            userVIPInfoService.passVIPApply(id);
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("操作成功"));
            LogHelper.userInfo("[ip:" + IPUtil.getRemotIP(request) + "]" + admin.getName() + "通过了[id=" + id + "]的升级超级会员申请!");
        } catch (UserVIPInfoException e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(e.getMsg()));
            return;
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作失败"));
            return;
        }
    }
    
    
    /**
     * 超级会员升级拒绝
     * @param callback
     * @param id
     * @param reason
     * @param out
     * @param request
     */
    
    @RequestMapping(value = "rejectVIP")
    public void rejectVIP(String callback, Long id, String reason, PrintWriter out,    HttpServletRequest request) {
        try {
            /* 检验是否登陆 */
            AdminUser admin = (AdminUser) request.getSession().getAttribute(Constant.SESSION_ADMIN);
            if (admin == null) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("当前账户失效,请重新登陆"));
                return;
            }
            userVIPInfoService.rejectVIPApply(id, reason);
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult("拒绝成功"));
            LogHelper.userInfo("[ip:" + IPUtil.getRemotIP(request) + "][管理员:" + admin.getName() + "] 拒绝提现id=" + id + "的升级超级会员申请不存在!");
        } catch (UserVIPInfoException e) {
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult(e.getMsg()));
            return;
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("操作失败"));
            return;
        }
    }
 
    
    
    /**
     * 用户账户明细
     * 
     * @param callback
     * @param pageIndex
     * @param pageSize
     * @param id
     * @param out
     */
    @RequestMapping(value = "getMoneyDetails")
    public void getMoneyDetails(String callback, Integer pageIndex, String key, Integer keyType, PrintWriter out) {
        if (pageIndex == null) {
            pageIndex = 1;
        }
        int pageSize = Constant.PAGE_SIZE;
        try {
            List<UserMoneyDetail> list = userMoneyDetailService.listQuery(pageIndex, pageSize, key, keyType);
            if (list == null || list.size() == 0) {
                JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("暂无数据"));
                return;
            }
            
            for (UserMoneyDetail detail: list) {
                UserInfo userInfo = detail.getUserInfo();
                if (userInfo == null) {
                    detail.setUserInfo(new UserInfo());
                    continue;
                }
                
                UserInfo user = userInfoService.selectByPKey(userInfo.getId());
                if (user != null) {
                    detail.setUserInfo(user);
                }
            }
 
            long count = userMoneyDetailService.countQuery(key, keyType);
            int totalPage = (int) (count % pageSize == 0 ? count / pageSize : count / pageSize + 1);
            PageEntity pe = new PageEntity(pageIndex, pageSize, count, totalPage);
            
            GsonBuilder gsonBuilder = new GsonBuilder().setDateFormat("yyyy-MM-dd HH:mm:ss");
            gsonBuilder.registerTypeAdapter(UserMoneyDetailTypeEnum.class, new JsonSerializer<UserMoneyDetailTypeEnum>() {
                @Override
                public JsonElement serialize(UserMoneyDetailTypeEnum value, Type theType, JsonSerializationContext context) {
                    if (value == null) {
                        return new JsonPrimitive("");
                    } else {
                        return new JsonPrimitive(value.getDesc());
                    }
                }
            });
            Gson gson = gsonBuilder.create();
            
            JSONObject data = new JSONObject();
            data.put("pe", pe);
            data.put("result_list", gson.toJson(list));
            JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
        } catch (Exception e) {
            e.printStackTrace();
            JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("查询失败"));
        }
    }
    
    
    
    /**
     *  用户粉丝统计
     * 
     * @param callback
     * @param pageIndex
     * @param pageSize
     * @param id
     * @param out
     */
    @RequestMapping(value = "countTeamFans")
    public void countTeamFans(String callback, Long uid, PrintWriter out) {
        int doneFirst = 0;
        int doneSecond = 0;
        UserInviteValidNum userInviteValidNum = userInviteValidNumService.selectByPrimaryKey(uid);
        if (userInviteValidNum != null) {
            doneFirst = userInviteValidNum.getNumFirst() == null ? 0 : userInviteValidNum.getNumFirst();
            doneSecond = userInviteValidNum.getNumSecond() == null ? 0 : userInviteValidNum.getNumSecond();
        }
        JSONObject data = new JSONObject();
        data.put("doneFirst", doneFirst); 
        data.put("doneSecond", doneSecond); 
        data.put("first", threeSaleSerivce.countFirstTeam(uid)); 
        data.put("second", threeSaleSerivce.countSecondTeam(uid)); 
        JsonUtil.printMode(out, callback, JsonUtil.loadTrueResult(data));
    }
 
            
}