-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathjson.json
1822 lines (1822 loc) · 71 KB
/
json.json
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
{
"EnumDTO?": {
"id_description": "/** 枚举ID */",
"id?": 1,
"desc_description": "/** 枚举描述 */",
"desc?": ""
},
"ResultDTO?": {
"code_description": "/** 状态码 */",
"code?": 1,
"data_description": "/** 返回数据 */",
"data?": {},
"msg_description": "/** 信息 */",
"msg?": ""
},
"AdvertisingDTO?": [{
"id_description": "/** id */",
"id?": 1,
"iconUrl_description": "/** 图标 */",
"iconUrl?": "",
"sortNo_description": "/** 排序值 */",
"sortNo?": 1,
"state_description": "/** 广告状态 AdvertisingState */",
"state?": 1,
"contentType_description": "/** 内容类型 AdContentType */",
"contentType?": 1,
"content_description": "/** 内容 */",
"content?": "",
"iconUrlID_description": "/** 图标ID */",
"iconUrlID?": 1,
"siteType_description": "/** 位置 ADSiteType */",
"siteType?": 1,
"clientCategory_description": "/** 1, Web 2, App端 */",
"clientCategory?": 1
}],
"BaccaratGameReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"gameCode_description": "/** 结束时间 */",
"gameCode?": "",
"roomID_description": "/** 房间id */",
"roomID?": 1,
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"BaccaratMemberGameReportDTO?": {
"bankCards_description": "/** 庄卡:BaccaratCard */",
"bankCards?": 1,
"playCards_description": "/** 闲卡:BaccaratCard */",
"playCards?": 1,
"bankAmount_description": "/** 庄下注金额 */",
"bankAmount?": 1,
"bankProfit_description": "/** 庄 +收益 -亏损 */",
"bankProfit?": 1,
"playAmount_description": "/** 闲下注金额 */",
"playAmount?": 1,
"playProfit_description": "/** 闲下注 +收益 -亏损 */",
"playProfit?": 1,
"tieAmount_description": "/** 和下注金额 */",
"tieAmount?": 1,
"tieProfit_description": "/** 和下注 +收益 -亏损 */",
"tieProfit?": 1,
"bankPairAmount_description": "/** 庄对下注金额 */",
"bankPairAmount?": 1,
"bankPairProfit_description": "/** 庄对下注 +收益 -亏损 */",
"bankPairProfit?": 1,
"playPairAmount_description": "/** 闲对下注金额 */",
"playPairAmount?": 1,
"playPairProfit_description": "/** 闲对下注 +收益 -亏损 */",
"playPairProfit?": 1,
"memberID_description": "/** memberID */",
"memberID?": 1,
"memberName_description": "/** 用户名字 */",
"memberName?": "",
"playerType_description": "/** 玩家类型 PlayerType */",
"playerType?": 1,
"betTimes_description": "/** 下注次数 */",
"betTimes?": 1,
"totalBetAmount_description": "/** 总下注金额 */",
"totalBetAmount?": 1,
"totalProfit_description": "/** 总盈利 + 赢利 -亏损 */",
"totalProfit?": 1,
"ip_description": "/** ip */",
"ip?": "",
"id_description": "/** 单号 */",
"id?": 1,
"roomID_description": "/** 房间id */",
"roomID?": 1,
"roomNo_description": "/** 房间号 */",
"roomNo?": 1,
"screeningNo_description": "/** 场号(value =第几场) */",
"screeningNo?": 1,
"screeningCode_description": "/** 场编号 */",
"screeningCode?": "",
"gameCode_description": "/** 游戏编号 */",
"gameCode?": "",
"gameTime_description": "/** 游戏时间 */",
"gameTime?": "",
"gameNo_description": "/** 游戏号(第几局) */",
"gameNo?": 1,
"finishMode_description": "/** 完成模式 1, 正常,-1 , 正在结束中 其他的为异常 */",
"finishMode?": 1,
"winBets_description": "/** 结果:赢了的赌注 1,百家乐BaccaratBet,2,龙虎IllustratingBet, 3,牛牛CattleBet */",
"winBets?": 1,
"winCamp_description": "/** 结果:赢方 1,百家乐BaccaratWinCamp,2,龙虎IllustratingWinCamp, 3,牛牛CattleWinCamp */",
"winCamp?": 1
},
"BaccaratMemberGameReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"BaccaratNewestRoomReportSearchingDTO?": {
"roomID_description": "/** 房间id */",
"roomID?": 1,
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"BaccaratReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"BaccaratRoomReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"IntListDTO?": {
"list_description": "/** 列表 */",
"list?": 1
},
"ListDTO?": [{
"list_description": "/** 列表 */",
"list?": []
}],
"MDBetableGameReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"gameCode_description": "/** 结束时间 */",
"gameCode?": "",
"roomID_description": "/** 房间id */",
"roomID?": 1,
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"MemberGameReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"PageDTO?": {
"size_description": "/** 数据条数 */",
"size?": 1,
"page_description": "/** 页数 */",
"page?": 1,
"totalPage_description": "/** 总页数 */",
"totalPage?": 1,
"totalSize_description": "/** 总项目数 */",
"totalSize?": 1,
"items_description": "/** 数据列表 */",
"items?": []
},
"PagingDTO?": {
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"PlayerMemberGameReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"CattleGameReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"gameCode_description": "/** 结束时间 */",
"gameCode?": "",
"roomID_description": "/** 房间id */",
"roomID?": 1,
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"CattleMemberGameReportDTO?": {
"bankCards_description": "/** 庄卡:CattleCard */",
"bankCards?": 1,
"playCards_description": "/** 闲卡:CattleCard */",
"playCards?": 1,
"bankAmount_description": "/** 庄下注金额 */",
"bankAmount?": 1,
"bankProfit_description": "/** 庄 +收益 -亏损 */",
"bankProfit?": 1,
"douBankAmount_description": "/** 庄下注金额 */",
"douBankAmount?": 1,
"douBankProfit_description": "/** 庄 +收益 -亏损 */",
"douBankProfit?": 1,
"playAmount_description": "/** 闲下注金额 */",
"playAmount?": 1,
"playProfit_description": "/** 闲下注 +收益 -亏损 */",
"playProfit?": 1,
"douPlayAmount_description": "/** 闲下注金额 */",
"douPlayAmount?": 1,
"douPlayProfit_description": "/** 闲下注 +收益 -亏损 */",
"douPlayProfit?": 1,
"memberID_description": "/** memberID */",
"memberID?": 1,
"memberName_description": "/** 用户名字 */",
"memberName?": "",
"playerType_description": "/** 玩家类型 PlayerType */",
"playerType?": 1,
"betTimes_description": "/** 下注次数 */",
"betTimes?": 1,
"totalBetAmount_description": "/** 总下注金额 */",
"totalBetAmount?": 1,
"totalProfit_description": "/** 总盈利 + 赢利 -亏损 */",
"totalProfit?": 1,
"ip_description": "/** ip */",
"ip?": "",
"id_description": "/** 单号 */",
"id?": 1,
"roomID_description": "/** 房间id */",
"roomID?": 1,
"roomNo_description": "/** 房间号 */",
"roomNo?": 1,
"screeningNo_description": "/** 场号(value =第几场) */",
"screeningNo?": 1,
"screeningCode_description": "/** 场编号 */",
"screeningCode?": "",
"gameCode_description": "/** 游戏编号 */",
"gameCode?": "",
"gameTime_description": "/** 游戏时间 */",
"gameTime?": "",
"gameNo_description": "/** 游戏号(第几局) */",
"gameNo?": 1,
"finishMode_description": "/** 完成模式 1, 正常,-1 , 正在结束中 其他的为异常 */",
"finishMode?": 1,
"winBets_description": "/** 结果:赢了的赌注 1,百家乐BaccaratBet,2,龙虎IllustratingBet, 3,牛牛CattleBet */",
"winBets?": 1,
"winCamp_description": "/** 结果:赢方 1,百家乐BaccaratWinCamp,2,龙虎IllustratingWinCamp, 3,牛牛CattleWinCamp */",
"winCamp?": 1
},
"CattleMemberGameReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"CattleReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"CattleRoomReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"PopularRecommendCreationDTO?": {
"gameType_description": "/** 游戏类型 GameType */",
"gameType?": 1,
"rooms_description": "/** 房间列表 */",
"rooms?": 1,
"popularSortNo_description": "/** 排序值 */",
"popularSortNo?": 1
},
"PopularRecommendDTO?": {
"id_description": "/** id */",
"id?": 1,
"gameType_description": "/** 游戏类型 GameType */",
"gameType?": 1,
"rooms_description": "/** 房间列表 */",
"rooms?": [{
"id_description": "/** id */",
"id?": 1,
"gameType_description": "/** 游戏类型 GameType */",
"gameType?": 1,
"rooms_description": "/** 房间列表 */",
"rooms?": 1,
"popularSortNo_description": "/** 排序值 */",
"popularSortNo?": 1
}],
"popularSortNo_description": "/** 排序值 */",
"popularSortNo?": 1
},
"RoomTinyDTO?": {
"id_description": "/** id */",
"id?": 1,
"gameType_description": "/** 游戏类型 GameType */",
"gameType?": 1,
"rooms_description": "/** 房间列表 */",
"rooms?": 1,
"popularSortNo_description": "/** 排序值 */",
"popularSortNo?": 1
},
"PopularRecommendEditingDTO?": {
"id_description": "/** id */",
"id?": 1,
"gameType_description": "/** 游戏类型 GameType */",
"gameType?": 1,
"rooms_description": "/** 房间列表 */",
"rooms?": 1,
"popularSortNo_description": "/** 排序值 */",
"popularSortNo?": 1
},
"IllustratingGameReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"gameCode_description": "/** 结束时间 */",
"gameCode?": "",
"roomID_description": "/** 房间id */",
"roomID?": 1,
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"IllustratingMemberGameReportDTO?": {
"tigerCard_description": "/** 虎卡:IllustratingCard */",
"tigerCard?": 1,
"dragonCard_description": "/** 龙卡:IllustratingCard */",
"dragonCard?": 1,
"tigerAmount_description": "/** 虎下注金额 */",
"tigerAmount?": 1,
"tigerProfit_description": "/** 虎 +收益 -亏损 */",
"tigerProfit?": 1,
"dragonAmount_description": "/** 龙下注金额 */",
"dragonAmount?": 1,
"dragonProfit_description": "/** 龙下注 +收益 -亏损 */",
"dragonProfit?": 1,
"tieAmount_description": "/** 和下注金额 */",
"tieAmount?": 1,
"tieProfit_description": "/** 和下注 +收益 -亏损 */",
"tieProfit?": 1,
"memberID_description": "/** memberID */",
"memberID?": 1,
"memberName_description": "/** 用户名字 */",
"memberName?": "",
"playerType_description": "/** 玩家类型 PlayerType */",
"playerType?": 1,
"betTimes_description": "/** 下注次数 */",
"betTimes?": 1,
"totalBetAmount_description": "/** 总下注金额 */",
"totalBetAmount?": 1,
"totalProfit_description": "/** 总盈利 + 赢利 -亏损 */",
"totalProfit?": 1,
"ip_description": "/** ip */",
"ip?": "",
"id_description": "/** 单号 */",
"id?": 1,
"roomID_description": "/** 房间id */",
"roomID?": 1,
"roomNo_description": "/** 房间号 */",
"roomNo?": 1,
"screeningNo_description": "/** 场号(value =第几场) */",
"screeningNo?": 1,
"screeningCode_description": "/** 场编号 */",
"screeningCode?": "",
"gameCode_description": "/** 游戏编号 */",
"gameCode?": "",
"gameTime_description": "/** 游戏时间 */",
"gameTime?": "",
"gameNo_description": "/** 游戏号(第几局) */",
"gameNo?": 1,
"finishMode_description": "/** 完成模式 1, 正常,-1 , 正在结束中 其他的为异常 */",
"finishMode?": 1,
"winBets_description": "/** 结果:赢了的赌注 1,百家乐BaccaratBet,2,龙虎IllustratingBet, 3,牛牛CattleBet */",
"winBets?": 1,
"winCamp_description": "/** 结果:赢方 1,百家乐BaccaratWinCamp,2,龙虎IllustratingWinCamp, 3,牛牛CattleWinCamp */",
"winCamp?": 1
},
"IllustratingMemberGameReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"IllustratingReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"IllustratingRoomReportSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"SystemNoticeDTO?": {
"id_description": "/** id */",
"id?": 1,
"state_description": "/** 1:过期的 2:播放中 3:未播放 */",
"state?": 1,
"clientCategorys_description": "/** 1, Web 2, App端 */",
"clientCategorys?": 1,
"content_description": "/** 内容 */",
"content?": "",
"startNoticeTime_description": "/** 开始通知时间 */",
"startNoticeTime?": "",
"endNoticeTime_description": "/** 结束通知时间 */",
"endNoticeTime?": ""
},
"AdminPlayerDTO?": {
"playerID_description": "/** 用户id */",
"playerID?": 1,
"account_description": "/** 账号 */",
"account?": "",
"realName_description": "/** 真实姓名 */",
"realName?": "",
"registerTime_description": "/** 用户注册时间 */",
"registerTime?": "",
"amount_description": "/** 余额 */",
"amount?": 1,
"onlineTime_description": "/** 最近一次在线时间 */",
"onlineTime?": "",
"totalBetAmount_description": "/** 总下注金额 */",
"totalBetAmount?": 1,
"totalProfit_description": "/** 盈利 + 赢 -输 */",
"totalProfit?": 1,
"userState_description": "/** 用户状态 UserState */",
"userState?": 1,
"ip_description": "/** ip */",
"ip?": "",
"referrerID_description": "/** 代理id */",
"referrerID?": 1
},
"AgencyPlayerDTO?": {
"recharge_description": "/** 充值金额 */",
"recharge?": 1,
"playerID_description": "/** 用户id */",
"playerID?": 1,
"account_description": "/** 账号 */",
"account?": "",
"realName_description": "/** 真实姓名 */",
"realName?": "",
"registerTime_description": "/** 用户注册时间 */",
"registerTime?": "",
"amount_description": "/** 余额 */",
"amount?": 1,
"onlineTime_description": "/** 最近一次在线时间 */",
"onlineTime?": "",
"totalBetAmount_description": "/** 总下注金额 */",
"totalBetAmount?": 1,
"totalProfit_description": "/** 盈利 + 赢 -输 */",
"totalProfit?": 1,
"userState_description": "/** 用户状态 UserState */",
"userState?": 1,
"ip_description": "/** ip */",
"ip?": "",
"referrerID_description": "/** 代理id */",
"referrerID?": 1
},
"AgencyPlayerSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"referrerID_description": "/** 代理id */",
"referrerID?": 1,
"name_description": "/** 账号 */",
"name?": "",
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"AgencyReportDTO?": {
"registerNum_description": "/** 玩家注册数量 */",
"registerNum?": 1,
"recharge_description": "/** 充值金额 */",
"recharge?": 1,
"betAmount_description": "/** 下注金额 */",
"betAmount?": 1
},
"AmountRecordSearchingDTO?": {
"playerName_description": "/** 用户名 */",
"playerName?": "",
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"playerID_description": "/** playerID */",
"playerID?": 1,
"causes_description": "/** 余额修改原因组id AmountAlterCause */",
"causes?": 1,
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"PlayerAmountRecordDTO?": {
"id_description": "/** id */",
"id?": 1,
"playerID_description": "/** playerID */",
"playerID?": 1,
"playerName_description": "/** 玩家名 */",
"playerName?": "",
"logTime_description": "/** 时间 */",
"logTime?": "",
"cause_description": "/** 余额修改原由 AmountAlterCauseGroup */",
"cause?": 1,
"oldAmount_description": "/** 修改前余额数 */",
"oldAmount?": "",
"amount_description": "/** 修改后余额数 */",
"amount?": "",
"alterValue_description": "/** 交易额 */",
"alterValue?": "",
"oldFrozenAmount_description": "/** 修改前冻结余额数 */",
"oldFrozenAmount?": "",
"frozenAmount_description": "/** 修改后冻结余额数 */",
"frozenAmount?": "",
"alterFrozenValue_description": "/** 冻结额 */",
"alterFrozenValue?": "",
"causePara_description": "/** 余额修改原由参数 可null */",
"causePara?": "",
"ip_description": "/** ip */",
"ip?": ""
},
"PlayerAmountRecordSearchingDTO?": {
"startTime_description": "/** 开始时间 */",
"startTime?": "",
"endTime_description": "/** 结束时间 */",
"endTime?": "",
"playerID_description": "/** playerID */",
"playerID?": 1,
"causes_description": "/** 余额修改原因组id AmountAlterCause */",
"causes?": 1,
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"PlayerAmountReportDTO?": {
"amount_description": "/** 金额 */",
"amount?": 1,
"recordNum_description": "/** 记录数量 */",
"recordNum?": 1
},
"PlayerSearchingDTO?": {
"startRegisterTime_description": "/** 注册开始时间 */",
"startRegisterTime?": "",
"endRegisterTime_description": "/** 注册结束时间 */",
"endRegisterTime?": "",
"name_description": "/** 账号 */",
"name?": "",
"referrerID_description": "/** 代理id */",
"referrerID?": 1,
"pageSize_description": "/** 每页大小 */",
"pageSize?": 1,
"pageNo_description": "/** 页码,从1开始 */",
"pageNo?": 1,
"firstID_description": "/** 首页首条ID,获取首页或者网页版不需要传 */",
"firstID?": 1
},
"RechargeAmountOrderDTO?": {
"amount_description": "/** 金额 */",
"amount?": 1,
"password_description": "/** 转账密码 */",
"password?": "",
"desc_description": "/** 备注 */",
"desc?": ""
},
"ReduceAmountOrderDTO?": {
"targetAccount_description": "/** 扣除对象账号 */",
"targetAccount?": "",
"amount_description": "/** 金额 */",
"amount?": 1,
"desc_description": "/** 备注 */",
"desc?": "",
"password_description": "/** 密码 */",
"password?": ""
},
"TransferAmountOrderDTO?": {
"targetAccount_description": "/** 转账对象账号 */",
"targetAccount?": "",
"amount_description": "/** 金额 */",
"amount?": 1,
"password_description": "/** 转账密码 */",
"password?": "",
"desc_description": "/** 备注 */",
"desc?": ""
},
"PlayerAdvertisingSearchingDTO?": {
"siteType_description": "/** 位置 ADSiteType */",
"siteType?": 1,
"clientCategory_description": "/** 1, Web 2, App端 */",
"clientCategory?": 1
},
"BaccaratBetDTO?": {
"betID_description": "/** 赌注 1:庄 2:闲 3:和 4:庄对 5:闲对 */",
"betID?": 1,
"memberNum_description": "/** 下注成员数量 */",
"memberNum?": 1,
"totalBetAmount_description": "/** 总的下注金额 */",
"totalBetAmount?": 1
},
"BaccaratBetOrderDTO?": {
"bet_description": "/** 赌注 1:庄 2:闲 3:和 4:庄对 5:闲对 */",
"bet?": 1,
"amount_description": "/** 金额 */",
"amount?": 1
},
"BaccaratBetOrderListDTO?": {
"roomID_description": "/** 房间号 */",
"roomID?": 1,
"orders_description": "/** 赌注订单 BaccaratBetOrderDTO */",
"orders?": [{
"bet_description": "/** 赌注 1:庄 2:闲 3:和 4:庄对 5:闲对 */",
"bet?": 1,
"amount_description": "/** 金额 */",
"amount?": 1
}]
},
"BaccaratFlopCardDTO?": {
"roomID_description": "/** 房间id (翻牌请求可以不传) */",
"roomID?": 1,
"positionID_description": "/** 卡牌位置 1:闲1 2:庄1 3:闲2 4:庄2 5:闲3 6:庄3 */",
"positionID?": 1,
"cardID_description": "/** 卡牌 1:A♠ 2:A♥ 3:A♣ 4:A♦ 5:2♠ 6:2♥ 7:2♣ 8:2♦ 9:3♠ 10:3♥ 11:3♣ 12:3♦ 13:4♠ 14:4♥ 15:4♣ 16:4♦ 17:5♠ 18:5♥ 19:5♣ 20:5♦ 21:6♠ 22:6♥ 23:6♣ 24:6♦ 25:7♠ 26:7♥ 27:7♣ 28:7♦ 29:8♠ 30:8♥ 31:8♣ 32:8♦ 33:9♠ 34:9♥ 35:9♣ 36:9♦ 37:10♠ 38:10♥ 39:10♣ 40:10♦ 41:J♠ 42:J♥ 43:J♣ 44:J♦ 45:Q♠ 46:Q♥ 47:Q♣ 48:Q♦ 49:K♠ 50:K♥ 51:K♣ 52:K♦ */",
"cardID?": 1,
"visible_description": "/** 可见的 true:玩家可见 false 玩家端未显示 undefined */",
"visible?": false,
"receivedCardMills_description": "/** 翻牌至今毫秒数(visible=false时receivedCardMills才有效) */",
"receivedCardMills?": 1
},
"BaccaratGameDTO?": {
"bankBet_description": "/** 百家乐赌注对象 - 庄 */",
"bankBet?": "",
"playBet_description": "/** 百家乐赌注对象 - 闲 */",
"playBet?": "",
"tieBet_description": "/** 百家乐赌注对象 - 和 */",
"tieBet?": "",
"bankPairBet_description": "/** 百家乐赌注对象 - 庄对 */",
"bankPairBet?": "",
"playPairBet_description": "/** 百家乐赌注对象 - 闲对 */",
"playPairBet?": "",
"displayMembers_description": "/** 桌面玩家 */",
"displayMembers?": [{
"seat_description": "/** 座位 undefined */",
"seat?": "",
"memberID_description": "/** memberID */",
"memberID?": 1,
"name_description": "/** 玩家名 */",
"name?": "",
"betAmount_description": "/** 赌注金额 */",
"betAmount?": 1
}],
"stateID_description": "/** 百家乐游戏状态 undefined */",
"stateID?": 1,
"betRemainMills_description": "/** 剩余下注倒计时:毫秒 */",
"betRemainMills?": 1,
"self_description": "/** 玩家自己在百家乐游戏的对象 */",
"self?": "",
"cards_description": "/** 已经翻开的卡牌 BaccaratFlopCardDTO */",
"cards?": [{
"roomID_description": "/** 房间id (翻牌请求可以不传) */",
"roomID?": 1,
"positionID_description": "/** 卡牌位置 1:闲1 2:庄1 3:闲2 4:庄2 5:闲3 6:庄3 */",
"positionID?": 1,
"cardID_description": "/** 卡牌 1:A♠ 2:A♥ 3:A♣ 4:A♦ 5:2♠ 6:2♥ 7:2♣ 8:2♦ 9:3♠ 10:3♥ 11:3♣ 12:3♦ 13:4♠ 14:4♥ 15:4♣ 16:4♦ 17:5♠ 18:5♥ 19:5♣ 20:5♦ 21:6♠ 22:6♥ 23:6♣ 24:6♦ 25:7♠ 26:7♥ 27:7♣ 28:7♦ 29:8♠ 30:8♥ 31:8♣ 32:8♦ 33:9♠ 34:9♥ 35:9♣ 36:9♦ 37:10♠ 38:10♥ 39:10♣ 40:10♦ 41:J♠ 42:J♥ 43:J♣ 44:J♦ 45:Q♠ 46:Q♥ 47:Q♣ 48:Q♦ 49:K♠ 50:K♥ 51:K♣ 52:K♦ */",
"cardID?": 1,
"visible_description": "/** 可见的 true:玩家可见 false 玩家端未显示 undefined */",
"visible?": false,
"receivedCardMills_description": "/** 翻牌至今毫秒数(visible=false时receivedCardMills才有效) */",
"receivedCardMills?": 1
}],
"gameCode_description": "/** 游戏编号 */",
"gameCode?": ""
},
"BaccaratGameModelEditingDTO?": {
"betTimeMills_description": "/** 赌注时间 */",
"betTimeMills?": "",
"playReplyRate_description": "/** 闲赌注赔偿比率 */",
"playReplyRate?": 1,
"bankReplyRate_description": "/** 庄赌注赔偿比率 */",
"bankReplyRate?": 1,
"tieReplyRate_description": "/** 和赌注赔偿比率 */",
"tieReplyRate?": 1,
"playPairReplyRate_description": "/** 闲对赌注赔偿比率 */",
"playPairReplyRate?": 1,
"bankPairReplyRate_description": "/** 庄对赌注赔偿比率 */",
"bankPairReplyRate?": 1
},
"BaccaratGameOpenDTO?": {
"displayMembers_description": "/** 桌面玩家 */",
"displayMembers?": [{
"seat_description": "/** 座位 undefined */",
"seat?": "",
"memberID_description": "/** memberID */",
"memberID?": 1,
"name_description": "/** 玩家名 */",
"name?": "",
"betAmount_description": "/** 赌注金额 */",
"betAmount?": 1
}],
"roomID_description": "/** 房间id */",
"roomID?": "",
"state_description": "/** 房间的状态 1:下注阶段 2:结算 3:洗牌(场结算) 4:房间暂停状态 6:房间关闭状态 7:局结束状态 8:局通关状态 */",
"state?": 1,
"betRemainMills_description": "/** 剩余下注倒计时:毫秒 */",
"betRemainMills?": 1,
"sceneNo_description": "/** 场号(第几场) */",
"sceneNo?": 1,
"gameNo_description": "/** 当前局号(第几局) */",
"gameNo?": 1,
"gameCode_description": "/** 游戏编码 */",
"gameCode?": ""
},
"BaccaratGamePlayerDTO?": {
"bankBetAmount_description": "/** 庄下注金额 */",
"bankBetAmount?": 1,
"playBetAmount_description": "/** 闲下注金额 */",
"playBetAmount?": 1,
"tieBetAmount_description": "/** 和下注金额 */",
"tieBetAmount?": 1,
"bankPairBetAmount_description": "/** 庄对下注金额 */",
"bankPairBetAmount?": 1,
"playPairBetAmount_description": "/** 闲对下注金额 */",
"playPairBetAmount?": 1
},
"BaccaratGameResultDTO?": {
"roomID_description": "/** 房间id */",
"roomID?": 1,
"bankPoint_description": "/** 庄牌点数 */",
"bankPoint?": 1,
"playPoint_description": "/** 闲牌点数 */",
"playPoint?": 1,
"winCampID_description": "/** 百家乐游戏赢方 undefined */",
"winCampID?": 1,
"bankCardSuitTypeID_description": "/** 庄牌类型 undefined */",
"bankCardSuitTypeID?": 1,
"playCardSuitTypeID_description": "/** 闲牌类型 undefined */",
"playCardSuitTypeID?": 1
},
"BaccaratGameResultInfoDTO?": {
"bankCardSuitTypeID_description": "/** 庄牌类型 undefined */",
"bankCardSuitTypeID?": 1,
"playCardSuitTypeID_description": "/** 闲牌类型 undefined */",
"playCardSuitTypeID?": 1,
"roomID_description": "/** 房间ID */",
"roomID?": "",
"gameCode_description": "/** 游戏局编号 */",
"gameCode?": "",
"gameNo_description": "/** 游戏局号 undefined */",
"gameNo?": "",
"winCampID_description": "/** 游戏赢方, 1.百家乐:BaccaratWinCamp,2.龙虎:IllustratingWinCamp 3.牛牛:CattleWinCamp */",
"winCampID?": 1
},
"BaccaratMemberBetDTO?": {
"memberID_description": "/** memberID */",
"memberID?": 1,
"name_description": "/** 玩家名 */",
"name?": "",
"betAmount_description": "/** 赌注金额 */",
"betAmount?": 1
},
"BaccaratPlayerProfileDTO?": {
"playerID_description": "/** playerID */",
"playerID?": 1,
"chips_description": "/** 常用筹码 Integer */",
"chips?": 1,
"allChips_description": "/** 所有筹码 Integer */",
"allChips?": 1
},
"BaccaratRoadDTO?": {
"roomID_description": "/** 百家乐房间id */",
"roomID?": 1,
"gameResults_description": "/** 百家乐游戏结果 - 局对象列表 */",
"gameResults?": [{
"bankCardSuitTypeID_description": "/** 庄牌类型 undefined */",
"bankCardSuitTypeID?": 1,
"playCardSuitTypeID_description": "/** 闲牌类型 undefined */",
"playCardSuitTypeID?": 1,
"roomID_description": "/** 房间ID */",
"roomID?": "",
"gameCode_description": "/** 游戏局编号 */",
"gameCode?": "",
"gameNo_description": "/** 游戏局号 undefined */",
"gameNo?": "",
"winCampID_description": "/** 游戏赢方, 1.百家乐:BaccaratWinCamp,2.龙虎:IllustratingWinCamp 3.牛牛:CattleWinCamp */",
"winCampID?": 1
}]
},
"BaccaratRoomDTO?": {
"game_description": "/** 游戏 - 局 (可为空) */",
"game?": "",
"playReplyRate_description": "/** 闲赌注赔偿比率 */",
"playReplyRate?": 1,
"bankReplyRate_description": "/** 庄赌注赔偿比率 */",
"bankReplyRate?": 1,
"tieReplyRate_description": "/** 和赌注赔偿比率 */",
"tieReplyRate?": 1,
"playPairReplyRate_description": "/** 闲对赌注赔偿比率 */",
"playPairReplyRate?": 1,
"bankPairReplyRate_description": "/** 庄对赌注赔偿比率 */",
"bankPairReplyRate?": 1,
"road_description": "/** 路图 (可为空) */",
"road?": "",
"videoURL_description": "/** 播放地址 */",
"videoURL?": "",
"overlookVideoURL_description": "/** 远景播放地址 */",
"overlookVideoURL?": "",
"maxNoBetTimes_description": "/** 最大没下注次数 */",
"maxNoBetTimes?": 1,
"roomID_description": "/** roomID */",
"roomID?": "",
"sceneNo_description": "/** 场号(第几场) */",
"sceneNo?": 1,
"gameNo_description": "/** 当前局号(第几局) */",
"gameNo?": 1,
"state_description": "/** 房间的状态 1:下注阶段 2:结算 3:洗牌(场结算) 4:房间暂停状态 6:房间关闭状态 7:局结束状态 8:局通关状态 */",
"state?": 1,
"betRemainMills_description": "/** 剩余下注倒计时:毫秒 */",
"betRemainMills?": 1,
"roomMemberNum_description": "/** 房间人数 */",
"roomMemberNum?": 1,
"roomNo_description": "/** 房间号 */",
"roomNo?": 1,
"name_description": "/** 房间名称 */",
"name?": "",
"minConsumption_description": "/** 低消 */",
"minConsumption?": 1,
"maxConsumption_description": "/** 高消 */",
"maxConsumption?": 1
},
"BaccaratRoomInfoDTO?": [{
"road_description": "/** 路图 (可为空) */",
"road?": "",
"roomID_description": "/** roomID */",
"roomID?": "",
"sceneNo_description": "/** 场号(第几场) */",
"sceneNo?": 1,
"gameNo_description": "/** 当前局号(第几局) */",
"gameNo?": 1,
"state_description": "/** 房间的状态 1:下注阶段 2:结算 3:洗牌(场结算) 4:房间暂停状态 6:房间关闭状态 7:局结束状态 8:局通关状态 */",
"state?": 1,
"betRemainMills_description": "/** 剩余下注倒计时:毫秒 */",
"betRemainMills?": 1,
"roomMemberNum_description": "/** 房间人数 */",
"roomMemberNum?": 1,
"roomNo_description": "/** 房间号 */",
"roomNo?": 1,
"name_description": "/** 房间名称 */",
"name?": "",
"minConsumption_description": "/** 低消 */",
"minConsumption?": 1,
"maxConsumption_description": "/** 高消 */",
"maxConsumption?": 1
}],
"BaccaratRoomStateAlterDTO?": {
"roomID_description": "/** 房间id */",
"roomID?": "",
"state_description": "/** 房间的状态 1:下注阶段 2:结算 3:洗牌(场结算) 4:房间暂停状态 6:房间关闭状态 7:局结束状态 8:局通关状态 */",
"state?": 1,
"betRemainMills_description": "/** 剩余下注倒计时:毫秒 */",
"betRemainMills?": 1,
"sceneNo_description": "/** 场号(第几场) */",
"sceneNo?": 1,
"gameNo_description": "/** 当前局号(第几局) */",
"gameNo?": 1,
"gameCode_description": "/** 游戏编码 */",
"gameCode?": ""
},
"CroupierBaccaratRoomDTO?": {
"cards_description": "/** 已经翻开的卡牌 */",
"cards?": [{
"roomID_description": "/** 房间id (翻牌请求可以不传) */",
"roomID?": 1,
"positionID_description": "/** 卡牌位置 1:闲1 2:庄1 3:闲2 4:庄2 5:闲3 6:庄3 */",
"positionID?": 1,
"cardID_description": "/** 卡牌 1:A♠ 2:A♥ 3:A♣ 4:A♦ 5:2♠ 6:2♥ 7:2♣ 8:2♦ 9:3♠ 10:3♥ 11:3♣ 12:3♦ 13:4♠ 14:4♥ 15:4♣ 16:4♦ 17:5♠ 18:5♥ 19:5♣ 20:5♦ 21:6♠ 22:6♥ 23:6♣ 24:6♦ 25:7♠ 26:7♥ 27:7♣ 28:7♦ 29:8♠ 30:8♥ 31:8♣ 32:8♦ 33:9♠ 34:9♥ 35:9♣ 36:9♦ 37:10♠ 38:10♥ 39:10♣ 40:10♦ 41:J♠ 42:J♥ 43:J♣ 44:J♦ 45:Q♠ 46:Q♥ 47:Q♣ 48:Q♦ 49:K♠ 50:K♥ 51:K♣ 52:K♦ */",
"cardID?": 1,
"visible_description": "/** 可见的 true:玩家可见 false 玩家端未显示 undefined */",
"visible?": false,
"receivedCardMills_description": "/** 翻牌至今毫秒数(visible=false时receivedCardMills才有效) */",
"receivedCardMills?": 1
}],
"road_description": "/** 路图 (可为空) */",
"road?": "",
"roomID_description": "/** roomID */",
"roomID?": "",
"sceneNo_description": "/** 场号(第几场) */",
"sceneNo?": 1,
"gameNo_description": "/** 当前局号(第几局) */",
"gameNo?": 1,
"state_description": "/** 房间的状态 1:下注阶段 2:结算 3:洗牌(场结算) 4:房间暂停状态 6:房间关闭状态 7:局结束状态 8:局通关状态 */",
"state?": 1,
"betRemainMills_description": "/** 剩余下注倒计时:毫秒 */",
"betRemainMills?": 1,
"roomMemberNum_description": "/** 房间人数 */",
"roomMemberNum?": 1,
"roomNo_description": "/** 房间号 */",