-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdcat_admin_ide_helper.php
997 lines (984 loc) · 57.5 KB
/
dcat_admin_ide_helper.php
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
<?php
/**
* A helper file for Dcat Admin, to provide autocomplete information to your IDE
*
* This file should not be included in your code, only analyzed by your IDE!
*
* @author jqh <[email protected]>
*/
namespace Dcat\Admin {
use Illuminate\Support\Collection;
/**
* @property Grid\Column|Collection id
* @property Grid\Column|Collection active_id
* @property Grid\Column|Collection type
* @property Grid\Column|Collection first_reward
* @property Grid\Column|Collection second_reward
* @property Grid\Column|Collection created_at
* @property Grid\Column|Collection updated_at
* @property Grid\Column|Collection name
* @property Grid\Column|Collection image
* @property Grid\Column|Collection object
* @property Grid\Column|Collection reward
* @property Grid\Column|Collection introduction
* @property Grid\Column|Collection start_time
* @property Grid\Column|Collection end_time
* @property Grid\Column|Collection status
* @property Grid\Column|Collection teacher_reward_type
* @property Grid\Column|Collection teacher_first_reward
* @property Grid\Column|Collection teacher_second_reward
* @property Grid\Column|Collection teacher_new_reward
* @property Grid\Column|Collection parent_reward_type
* @property Grid\Column|Collection parent_first_reward
* @property Grid\Column|Collection parent_second_reward
* @property Grid\Column|Collection parent_new_reward
* @property Grid\Column|Collection student_reward_type
* @property Grid\Column|Collection student_first_reward
* @property Grid\Column|Collection student_second_reward
* @property Grid\Column|Collection student_new_reward
* @property Grid\Column|Collection organ_reward_type
* @property Grid\Column|Collection organ_first_reward
* @property Grid\Column|Collection organ_second_reward
* @property Grid\Column|Collection organ_new_reward
* @property Grid\Column|Collection teacher_real_auth_reward
* @property Grid\Column|Collection teacher_cert_reward
* @property Grid\Column|Collection teacher_career_reward
* @property Grid\Column|Collection teacher_image_reward
* @property Grid\Column|Collection teacher_deal_reward_type
* @property Grid\Column|Collection deal_teacher_reward
* @property Grid\Column|Collection parent_deal_reward_type
* @property Grid\Column|Collection parent_deal_reward
* @property Grid\Column|Collection organ_deal_reward_type
* @property Grid\Column|Collection organ_deal_reward
* @property Grid\Column|Collection adder
* @property Grid\Column|Collection reason
* @property Grid\Column|Collection is_disabled
* @property Grid\Column|Collection user_id
* @property Grid\Column|Collection username
* @property Grid\Column|Collection first_child
* @property Grid\Column|Collection second_child
* @property Grid\Column|Collection activity_id
* @property Grid\Column|Collection project
* @property Grid\Column|Collection amount
* @property Grid\Column|Collection role
* @property Grid\Column|Collection deal_amount
* @property Grid\Column|Collection version
* @property Grid\Column|Collection detail
* @property Grid\Column|Collection is_enabled
* @property Grid\Column|Collection parent_id
* @property Grid\Column|Collection order
* @property Grid\Column|Collection icon
* @property Grid\Column|Collection uri
* @property Grid\Column|Collection extension
* @property Grid\Column|Collection permission_id
* @property Grid\Column|Collection menu_id
* @property Grid\Column|Collection slug
* @property Grid\Column|Collection http_method
* @property Grid\Column|Collection http_path
* @property Grid\Column|Collection role_id
* @property Grid\Column|Collection value
* @property Grid\Column|Collection mobile
* @property Grid\Column|Collection password
* @property Grid\Column|Collection email
* @property Grid\Column|Collection avatar
* @property Grid\Column|Collection personal_status
* @property Grid\Column|Collection remember_token
* @property Grid\Column|Collection last_login_time
* @property Grid\Column|Collection content
* @property Grid\Column|Collection editor
* @property Grid\Column|Collection region_name
* @property Grid\Column|Collection initial
* @property Grid\Column|Collection url
* @property Grid\Column|Collection link
* @property Grid\Column|Collection logo
* @property Grid\Column|Collection login_bg
* @property Grid\Column|Collection contact
* @property Grid\Column|Collection user_agreement
* @property Grid\Column|Collection is_show_full
* @property Grid\Column|Collection course_id
* @property Grid\Column|Collection teacher_id
* @property Grid\Column|Collection method
* @property Grid\Column|Collection adder_id
* @property Grid\Column|Collection editor_id
* @property Grid\Column|Collection consult_time
* @property Grid\Column|Collection organ_id
* @property Grid\Column|Collection latest_end_time
* @property Grid\Column|Collection course_end
* @property Grid\Column|Collection deal_pay
* @property Grid\Column|Collection confirm_course
* @property Grid\Column|Collection is_can_look
* @property Grid\Column|Collection student
* @property Grid\Column|Collection gender
* @property Grid\Column|Collection grade
* @property Grid\Column|Collection cover_image
* @property Grid\Column|Collection subject
* @property Grid\Column|Collection count_min
* @property Grid\Column|Collection count_max
* @property Grid\Column|Collection class_number
* @property Grid\Column|Collection class_price_min
* @property Grid\Column|Collection class_price_max
* @property Grid\Column|Collection class_price
* @property Grid\Column|Collection duration
* @property Grid\Column|Collection class_duration
* @property Grid\Column|Collection class_date
* @property Grid\Column|Collection class_type
* @property Grid\Column|Collection base_count
* @property Grid\Column|Collection base_price
* @property Grid\Column|Collection improve_count
* @property Grid\Column|Collection improve_price
* @property Grid\Column|Collection max_price
* @property Grid\Column|Collection adder_role
* @property Grid\Column|Collection class_commission
* @property Grid\Column|Collection course_status
* @property Grid\Column|Collection reviewer
* @property Grid\Column|Collection notes
* @property Grid\Column|Collection entry_number
* @property Grid\Column|Collection deliver_number
* @property Grid\Column|Collection province
* @property Grid\Column|Collection city
* @property Grid\Column|Collection district
* @property Grid\Column|Collection address
* @property Grid\Column|Collection qq_account
* @property Grid\Column|Collection wechat_account
* @property Grid\Column|Collection requirement
* @property Grid\Column|Collection valid_time
* @property Grid\Column|Collection buyer_count
* @property Grid\Column|Collection visit_count
* @property Grid\Column|Collection class_date_start
* @property Grid\Column|Collection class_date_end
* @property Grid\Column|Collection wechat
* @property Grid\Column|Collection tag
* @property Grid\Column|Collection presale_header_id
* @property Grid\Column|Collection aftersale_header_id
* @property Grid\Column|Collection introduce
* @property Grid\Column|Collection is_checked
* @property Grid\Column|Collection out_trade_no
* @property Grid\Column|Collection pay_type
* @property Grid\Column|Collection pay_status
* @property Grid\Column|Collection uuid
* @property Grid\Column|Collection connection
* @property Grid\Column|Collection queue
* @property Grid\Column|Collection payload
* @property Grid\Column|Collection exception
* @property Grid\Column|Collection failed_at
* @property Grid\Column|Collection from_user_id
* @property Grid\Column|Collection send_platform
* @property Grid\Column|Collection author
* @property Grid\Column|Collection privilege
* @property Grid\Column|Collection privilege_id
* @property Grid\Column|Collection update_at
* @property Grid\Column|Collection nature
* @property Grid\Column|Collection training_type
* @property Grid\Column|Collection id_card_no
* @property Grid\Column|Collection province_id
* @property Grid\Column|Collection city_id
* @property Grid\Column|Collection district_id
* @property Grid\Column|Collection longitude
* @property Grid\Column|Collection latitude
* @property Grid\Column|Collection door_image
* @property Grid\Column|Collection business_license
* @property Grid\Column|Collection reviewer_id
* @property Grid\Column|Collection class_time
* @property Grid\Column|Collection reject_reason
* @property Grid\Column|Collection school
* @property Grid\Column|Collection birthday
* @property Grid\Column|Collection token
* @property Grid\Column|Collection tokenable_type
* @property Grid\Column|Collection tokenable_id
* @property Grid\Column|Collection abilities
* @property Grid\Column|Collection last_used_at
* @property Grid\Column|Collection code
* @property Grid\Column|Collection region_type
* @property Grid\Column|Collection is_last
* @property Grid\Column|Collection show_platform
* @property Grid\Column|Collection price
* @property Grid\Column|Collection region
* @property Grid\Column|Collection parent_bg
* @property Grid\Column|Collection student_bg
* @property Grid\Column|Collection teacher_bg
* @property Grid\Column|Collection organ_bg
* @property Grid\Column|Collection share_post
* @property Grid\Column|Collection invite_register_bg
* @property Grid\Column|Collection teacher_detail_top_bg
* @property Grid\Column|Collection invite_organ_confirm_bg
* @property Grid\Column|Collection invite_teacher_confirm_bg
* @property Grid\Column|Collection intermediary_bg
* @property Grid\Column|Collection action
* @property Grid\Column|Collection site_message
* @property Grid\Column|Collection text_message
* @property Grid\Column|Collection official_account
* @property Grid\Column|Collection admin_mobile
* @property Grid\Column|Collection organization
* @property Grid\Column|Collection teaching_type
* @property Grid\Column|Collection teacher_cert
* @property Grid\Column|Collection other_cert
* @property Grid\Column|Collection honor_cert
* @property Grid\Column|Collection highest_education
* @property Grid\Column|Collection education_id
* @property Grid\Column|Collection graduate_school
* @property Grid\Column|Collection speciality
* @property Grid\Column|Collection graduate_cert
* @property Grid\Column|Collection diploma
* @property Grid\Column|Collection id_card_front
* @property Grid\Column|Collection id_card_backend
* @property Grid\Column|Collection real_name
* @property Grid\Column|Collection real_auth_reason
* @property Grid\Column|Collection picture
* @property Grid\Column|Collection education_reason
* @property Grid\Column|Collection teaching_year
* @property Grid\Column|Collection data_status
* @property Grid\Column|Collection total_out_trade_no
* @property Grid\Column|Collection student_id
* @property Grid\Column|Collection discount
* @property Grid\Column|Collection nickname
* @property Grid\Column|Collection organ_role_id
* @property Grid\Column|Collection age
* @property Grid\Column|Collection total_income
* @property Grid\Column|Collection withdraw_balance
* @property Grid\Column|Collection is_real_auth
* @property Grid\Column|Collection is_education
* @property Grid\Column|Collection has_teacher_cert
* @property Grid\Column|Collection is_recommend
* @property Grid\Column|Collection open_id
* @property Grid\Column|Collection official_open_id
* @property Grid\Column|Collection invite_qrcode
* @property Grid\Column|Collection union_id
* @property Grid\Column|Collection is_new
* @property Grid\Column|Collection bank
* @property Grid\Column|Collection account
*
* @method Grid\Column|Collection id(string $label = null)
* @method Grid\Column|Collection active_id(string $label = null)
* @method Grid\Column|Collection type(string $label = null)
* @method Grid\Column|Collection first_reward(string $label = null)
* @method Grid\Column|Collection second_reward(string $label = null)
* @method Grid\Column|Collection created_at(string $label = null)
* @method Grid\Column|Collection updated_at(string $label = null)
* @method Grid\Column|Collection name(string $label = null)
* @method Grid\Column|Collection image(string $label = null)
* @method Grid\Column|Collection object(string $label = null)
* @method Grid\Column|Collection reward(string $label = null)
* @method Grid\Column|Collection introduction(string $label = null)
* @method Grid\Column|Collection start_time(string $label = null)
* @method Grid\Column|Collection end_time(string $label = null)
* @method Grid\Column|Collection status(string $label = null)
* @method Grid\Column|Collection teacher_reward_type(string $label = null)
* @method Grid\Column|Collection teacher_first_reward(string $label = null)
* @method Grid\Column|Collection teacher_second_reward(string $label = null)
* @method Grid\Column|Collection teacher_new_reward(string $label = null)
* @method Grid\Column|Collection parent_reward_type(string $label = null)
* @method Grid\Column|Collection parent_first_reward(string $label = null)
* @method Grid\Column|Collection parent_second_reward(string $label = null)
* @method Grid\Column|Collection parent_new_reward(string $label = null)
* @method Grid\Column|Collection student_reward_type(string $label = null)
* @method Grid\Column|Collection student_first_reward(string $label = null)
* @method Grid\Column|Collection student_second_reward(string $label = null)
* @method Grid\Column|Collection student_new_reward(string $label = null)
* @method Grid\Column|Collection organ_reward_type(string $label = null)
* @method Grid\Column|Collection organ_first_reward(string $label = null)
* @method Grid\Column|Collection organ_second_reward(string $label = null)
* @method Grid\Column|Collection organ_new_reward(string $label = null)
* @method Grid\Column|Collection teacher_real_auth_reward(string $label = null)
* @method Grid\Column|Collection teacher_cert_reward(string $label = null)
* @method Grid\Column|Collection teacher_career_reward(string $label = null)
* @method Grid\Column|Collection teacher_image_reward(string $label = null)
* @method Grid\Column|Collection teacher_deal_reward_type(string $label = null)
* @method Grid\Column|Collection deal_teacher_reward(string $label = null)
* @method Grid\Column|Collection parent_deal_reward_type(string $label = null)
* @method Grid\Column|Collection parent_deal_reward(string $label = null)
* @method Grid\Column|Collection organ_deal_reward_type(string $label = null)
* @method Grid\Column|Collection organ_deal_reward(string $label = null)
* @method Grid\Column|Collection adder(string $label = null)
* @method Grid\Column|Collection reason(string $label = null)
* @method Grid\Column|Collection is_disabled(string $label = null)
* @method Grid\Column|Collection user_id(string $label = null)
* @method Grid\Column|Collection username(string $label = null)
* @method Grid\Column|Collection first_child(string $label = null)
* @method Grid\Column|Collection second_child(string $label = null)
* @method Grid\Column|Collection activity_id(string $label = null)
* @method Grid\Column|Collection project(string $label = null)
* @method Grid\Column|Collection amount(string $label = null)
* @method Grid\Column|Collection role(string $label = null)
* @method Grid\Column|Collection deal_amount(string $label = null)
* @method Grid\Column|Collection version(string $label = null)
* @method Grid\Column|Collection detail(string $label = null)
* @method Grid\Column|Collection is_enabled(string $label = null)
* @method Grid\Column|Collection parent_id(string $label = null)
* @method Grid\Column|Collection order(string $label = null)
* @method Grid\Column|Collection icon(string $label = null)
* @method Grid\Column|Collection uri(string $label = null)
* @method Grid\Column|Collection extension(string $label = null)
* @method Grid\Column|Collection permission_id(string $label = null)
* @method Grid\Column|Collection menu_id(string $label = null)
* @method Grid\Column|Collection slug(string $label = null)
* @method Grid\Column|Collection http_method(string $label = null)
* @method Grid\Column|Collection http_path(string $label = null)
* @method Grid\Column|Collection role_id(string $label = null)
* @method Grid\Column|Collection value(string $label = null)
* @method Grid\Column|Collection mobile(string $label = null)
* @method Grid\Column|Collection password(string $label = null)
* @method Grid\Column|Collection email(string $label = null)
* @method Grid\Column|Collection avatar(string $label = null)
* @method Grid\Column|Collection personal_status(string $label = null)
* @method Grid\Column|Collection remember_token(string $label = null)
* @method Grid\Column|Collection last_login_time(string $label = null)
* @method Grid\Column|Collection content(string $label = null)
* @method Grid\Column|Collection editor(string $label = null)
* @method Grid\Column|Collection region_name(string $label = null)
* @method Grid\Column|Collection initial(string $label = null)
* @method Grid\Column|Collection url(string $label = null)
* @method Grid\Column|Collection link(string $label = null)
* @method Grid\Column|Collection logo(string $label = null)
* @method Grid\Column|Collection login_bg(string $label = null)
* @method Grid\Column|Collection contact(string $label = null)
* @method Grid\Column|Collection user_agreement(string $label = null)
* @method Grid\Column|Collection is_show_full(string $label = null)
* @method Grid\Column|Collection course_id(string $label = null)
* @method Grid\Column|Collection teacher_id(string $label = null)
* @method Grid\Column|Collection method(string $label = null)
* @method Grid\Column|Collection adder_id(string $label = null)
* @method Grid\Column|Collection editor_id(string $label = null)
* @method Grid\Column|Collection consult_time(string $label = null)
* @method Grid\Column|Collection organ_id(string $label = null)
* @method Grid\Column|Collection latest_end_time(string $label = null)
* @method Grid\Column|Collection course_end(string $label = null)
* @method Grid\Column|Collection deal_pay(string $label = null)
* @method Grid\Column|Collection confirm_course(string $label = null)
* @method Grid\Column|Collection is_can_look(string $label = null)
* @method Grid\Column|Collection student(string $label = null)
* @method Grid\Column|Collection gender(string $label = null)
* @method Grid\Column|Collection grade(string $label = null)
* @method Grid\Column|Collection cover_image(string $label = null)
* @method Grid\Column|Collection subject(string $label = null)
* @method Grid\Column|Collection count_min(string $label = null)
* @method Grid\Column|Collection count_max(string $label = null)
* @method Grid\Column|Collection class_number(string $label = null)
* @method Grid\Column|Collection class_price_min(string $label = null)
* @method Grid\Column|Collection class_price_max(string $label = null)
* @method Grid\Column|Collection class_price(string $label = null)
* @method Grid\Column|Collection duration(string $label = null)
* @method Grid\Column|Collection class_duration(string $label = null)
* @method Grid\Column|Collection class_date(string $label = null)
* @method Grid\Column|Collection class_type(string $label = null)
* @method Grid\Column|Collection base_count(string $label = null)
* @method Grid\Column|Collection base_price(string $label = null)
* @method Grid\Column|Collection improve_count(string $label = null)
* @method Grid\Column|Collection improve_price(string $label = null)
* @method Grid\Column|Collection max_price(string $label = null)
* @method Grid\Column|Collection adder_role(string $label = null)
* @method Grid\Column|Collection class_commission(string $label = null)
* @method Grid\Column|Collection course_status(string $label = null)
* @method Grid\Column|Collection reviewer(string $label = null)
* @method Grid\Column|Collection notes(string $label = null)
* @method Grid\Column|Collection entry_number(string $label = null)
* @method Grid\Column|Collection deliver_number(string $label = null)
* @method Grid\Column|Collection province(string $label = null)
* @method Grid\Column|Collection city(string $label = null)
* @method Grid\Column|Collection district(string $label = null)
* @method Grid\Column|Collection address(string $label = null)
* @method Grid\Column|Collection qq_account(string $label = null)
* @method Grid\Column|Collection wechat_account(string $label = null)
* @method Grid\Column|Collection requirement(string $label = null)
* @method Grid\Column|Collection valid_time(string $label = null)
* @method Grid\Column|Collection buyer_count(string $label = null)
* @method Grid\Column|Collection visit_count(string $label = null)
* @method Grid\Column|Collection class_date_start(string $label = null)
* @method Grid\Column|Collection class_date_end(string $label = null)
* @method Grid\Column|Collection wechat(string $label = null)
* @method Grid\Column|Collection tag(string $label = null)
* @method Grid\Column|Collection presale_header_id(string $label = null)
* @method Grid\Column|Collection aftersale_header_id(string $label = null)
* @method Grid\Column|Collection introduce(string $label = null)
* @method Grid\Column|Collection is_checked(string $label = null)
* @method Grid\Column|Collection out_trade_no(string $label = null)
* @method Grid\Column|Collection pay_type(string $label = null)
* @method Grid\Column|Collection pay_status(string $label = null)
* @method Grid\Column|Collection uuid(string $label = null)
* @method Grid\Column|Collection connection(string $label = null)
* @method Grid\Column|Collection queue(string $label = null)
* @method Grid\Column|Collection payload(string $label = null)
* @method Grid\Column|Collection exception(string $label = null)
* @method Grid\Column|Collection failed_at(string $label = null)
* @method Grid\Column|Collection from_user_id(string $label = null)
* @method Grid\Column|Collection send_platform(string $label = null)
* @method Grid\Column|Collection author(string $label = null)
* @method Grid\Column|Collection privilege(string $label = null)
* @method Grid\Column|Collection privilege_id(string $label = null)
* @method Grid\Column|Collection update_at(string $label = null)
* @method Grid\Column|Collection nature(string $label = null)
* @method Grid\Column|Collection training_type(string $label = null)
* @method Grid\Column|Collection id_card_no(string $label = null)
* @method Grid\Column|Collection province_id(string $label = null)
* @method Grid\Column|Collection city_id(string $label = null)
* @method Grid\Column|Collection district_id(string $label = null)
* @method Grid\Column|Collection longitude(string $label = null)
* @method Grid\Column|Collection latitude(string $label = null)
* @method Grid\Column|Collection door_image(string $label = null)
* @method Grid\Column|Collection business_license(string $label = null)
* @method Grid\Column|Collection reviewer_id(string $label = null)
* @method Grid\Column|Collection class_time(string $label = null)
* @method Grid\Column|Collection reject_reason(string $label = null)
* @method Grid\Column|Collection school(string $label = null)
* @method Grid\Column|Collection birthday(string $label = null)
* @method Grid\Column|Collection token(string $label = null)
* @method Grid\Column|Collection tokenable_type(string $label = null)
* @method Grid\Column|Collection tokenable_id(string $label = null)
* @method Grid\Column|Collection abilities(string $label = null)
* @method Grid\Column|Collection last_used_at(string $label = null)
* @method Grid\Column|Collection code(string $label = null)
* @method Grid\Column|Collection region_type(string $label = null)
* @method Grid\Column|Collection is_last(string $label = null)
* @method Grid\Column|Collection show_platform(string $label = null)
* @method Grid\Column|Collection price(string $label = null)
* @method Grid\Column|Collection region(string $label = null)
* @method Grid\Column|Collection parent_bg(string $label = null)
* @method Grid\Column|Collection student_bg(string $label = null)
* @method Grid\Column|Collection teacher_bg(string $label = null)
* @method Grid\Column|Collection organ_bg(string $label = null)
* @method Grid\Column|Collection share_post(string $label = null)
* @method Grid\Column|Collection invite_register_bg(string $label = null)
* @method Grid\Column|Collection teacher_detail_top_bg(string $label = null)
* @method Grid\Column|Collection invite_organ_confirm_bg(string $label = null)
* @method Grid\Column|Collection invite_teacher_confirm_bg(string $label = null)
* @method Grid\Column|Collection intermediary_bg(string $label = null)
* @method Grid\Column|Collection action(string $label = null)
* @method Grid\Column|Collection site_message(string $label = null)
* @method Grid\Column|Collection text_message(string $label = null)
* @method Grid\Column|Collection official_account(string $label = null)
* @method Grid\Column|Collection admin_mobile(string $label = null)
* @method Grid\Column|Collection organization(string $label = null)
* @method Grid\Column|Collection teaching_type(string $label = null)
* @method Grid\Column|Collection teacher_cert(string $label = null)
* @method Grid\Column|Collection other_cert(string $label = null)
* @method Grid\Column|Collection honor_cert(string $label = null)
* @method Grid\Column|Collection highest_education(string $label = null)
* @method Grid\Column|Collection education_id(string $label = null)
* @method Grid\Column|Collection graduate_school(string $label = null)
* @method Grid\Column|Collection speciality(string $label = null)
* @method Grid\Column|Collection graduate_cert(string $label = null)
* @method Grid\Column|Collection diploma(string $label = null)
* @method Grid\Column|Collection id_card_front(string $label = null)
* @method Grid\Column|Collection id_card_backend(string $label = null)
* @method Grid\Column|Collection real_name(string $label = null)
* @method Grid\Column|Collection real_auth_reason(string $label = null)
* @method Grid\Column|Collection picture(string $label = null)
* @method Grid\Column|Collection education_reason(string $label = null)
* @method Grid\Column|Collection teaching_year(string $label = null)
* @method Grid\Column|Collection data_status(string $label = null)
* @method Grid\Column|Collection total_out_trade_no(string $label = null)
* @method Grid\Column|Collection student_id(string $label = null)
* @method Grid\Column|Collection discount(string $label = null)
* @method Grid\Column|Collection nickname(string $label = null)
* @method Grid\Column|Collection organ_role_id(string $label = null)
* @method Grid\Column|Collection age(string $label = null)
* @method Grid\Column|Collection total_income(string $label = null)
* @method Grid\Column|Collection withdraw_balance(string $label = null)
* @method Grid\Column|Collection is_real_auth(string $label = null)
* @method Grid\Column|Collection is_education(string $label = null)
* @method Grid\Column|Collection has_teacher_cert(string $label = null)
* @method Grid\Column|Collection is_recommend(string $label = null)
* @method Grid\Column|Collection open_id(string $label = null)
* @method Grid\Column|Collection official_open_id(string $label = null)
* @method Grid\Column|Collection invite_qrcode(string $label = null)
* @method Grid\Column|Collection union_id(string $label = null)
* @method Grid\Column|Collection is_new(string $label = null)
* @method Grid\Column|Collection bank(string $label = null)
* @method Grid\Column|Collection account(string $label = null)
*/
class Grid {}
class MiniGrid extends Grid {}
/**
* @property Show\Field|Collection id
* @property Show\Field|Collection active_id
* @property Show\Field|Collection type
* @property Show\Field|Collection first_reward
* @property Show\Field|Collection second_reward
* @property Show\Field|Collection created_at
* @property Show\Field|Collection updated_at
* @property Show\Field|Collection name
* @property Show\Field|Collection image
* @property Show\Field|Collection object
* @property Show\Field|Collection reward
* @property Show\Field|Collection introduction
* @property Show\Field|Collection start_time
* @property Show\Field|Collection end_time
* @property Show\Field|Collection status
* @property Show\Field|Collection teacher_reward_type
* @property Show\Field|Collection teacher_first_reward
* @property Show\Field|Collection teacher_second_reward
* @property Show\Field|Collection teacher_new_reward
* @property Show\Field|Collection parent_reward_type
* @property Show\Field|Collection parent_first_reward
* @property Show\Field|Collection parent_second_reward
* @property Show\Field|Collection parent_new_reward
* @property Show\Field|Collection student_reward_type
* @property Show\Field|Collection student_first_reward
* @property Show\Field|Collection student_second_reward
* @property Show\Field|Collection student_new_reward
* @property Show\Field|Collection organ_reward_type
* @property Show\Field|Collection organ_first_reward
* @property Show\Field|Collection organ_second_reward
* @property Show\Field|Collection organ_new_reward
* @property Show\Field|Collection teacher_real_auth_reward
* @property Show\Field|Collection teacher_cert_reward
* @property Show\Field|Collection teacher_career_reward
* @property Show\Field|Collection teacher_image_reward
* @property Show\Field|Collection teacher_deal_reward_type
* @property Show\Field|Collection deal_teacher_reward
* @property Show\Field|Collection parent_deal_reward_type
* @property Show\Field|Collection parent_deal_reward
* @property Show\Field|Collection organ_deal_reward_type
* @property Show\Field|Collection organ_deal_reward
* @property Show\Field|Collection adder
* @property Show\Field|Collection reason
* @property Show\Field|Collection is_disabled
* @property Show\Field|Collection user_id
* @property Show\Field|Collection username
* @property Show\Field|Collection first_child
* @property Show\Field|Collection second_child
* @property Show\Field|Collection activity_id
* @property Show\Field|Collection project
* @property Show\Field|Collection amount
* @property Show\Field|Collection role
* @property Show\Field|Collection deal_amount
* @property Show\Field|Collection version
* @property Show\Field|Collection detail
* @property Show\Field|Collection is_enabled
* @property Show\Field|Collection parent_id
* @property Show\Field|Collection order
* @property Show\Field|Collection icon
* @property Show\Field|Collection uri
* @property Show\Field|Collection extension
* @property Show\Field|Collection permission_id
* @property Show\Field|Collection menu_id
* @property Show\Field|Collection slug
* @property Show\Field|Collection http_method
* @property Show\Field|Collection http_path
* @property Show\Field|Collection role_id
* @property Show\Field|Collection value
* @property Show\Field|Collection mobile
* @property Show\Field|Collection password
* @property Show\Field|Collection email
* @property Show\Field|Collection avatar
* @property Show\Field|Collection personal_status
* @property Show\Field|Collection remember_token
* @property Show\Field|Collection last_login_time
* @property Show\Field|Collection content
* @property Show\Field|Collection editor
* @property Show\Field|Collection region_name
* @property Show\Field|Collection initial
* @property Show\Field|Collection url
* @property Show\Field|Collection link
* @property Show\Field|Collection logo
* @property Show\Field|Collection login_bg
* @property Show\Field|Collection contact
* @property Show\Field|Collection user_agreement
* @property Show\Field|Collection is_show_full
* @property Show\Field|Collection course_id
* @property Show\Field|Collection teacher_id
* @property Show\Field|Collection method
* @property Show\Field|Collection adder_id
* @property Show\Field|Collection editor_id
* @property Show\Field|Collection consult_time
* @property Show\Field|Collection organ_id
* @property Show\Field|Collection latest_end_time
* @property Show\Field|Collection course_end
* @property Show\Field|Collection deal_pay
* @property Show\Field|Collection confirm_course
* @property Show\Field|Collection is_can_look
* @property Show\Field|Collection student
* @property Show\Field|Collection gender
* @property Show\Field|Collection grade
* @property Show\Field|Collection cover_image
* @property Show\Field|Collection subject
* @property Show\Field|Collection count_min
* @property Show\Field|Collection count_max
* @property Show\Field|Collection class_number
* @property Show\Field|Collection class_price_min
* @property Show\Field|Collection class_price_max
* @property Show\Field|Collection class_price
* @property Show\Field|Collection duration
* @property Show\Field|Collection class_duration
* @property Show\Field|Collection class_date
* @property Show\Field|Collection class_type
* @property Show\Field|Collection base_count
* @property Show\Field|Collection base_price
* @property Show\Field|Collection improve_count
* @property Show\Field|Collection improve_price
* @property Show\Field|Collection max_price
* @property Show\Field|Collection adder_role
* @property Show\Field|Collection class_commission
* @property Show\Field|Collection course_status
* @property Show\Field|Collection reviewer
* @property Show\Field|Collection notes
* @property Show\Field|Collection entry_number
* @property Show\Field|Collection deliver_number
* @property Show\Field|Collection province
* @property Show\Field|Collection city
* @property Show\Field|Collection district
* @property Show\Field|Collection address
* @property Show\Field|Collection qq_account
* @property Show\Field|Collection wechat_account
* @property Show\Field|Collection requirement
* @property Show\Field|Collection valid_time
* @property Show\Field|Collection buyer_count
* @property Show\Field|Collection visit_count
* @property Show\Field|Collection class_date_start
* @property Show\Field|Collection class_date_end
* @property Show\Field|Collection wechat
* @property Show\Field|Collection tag
* @property Show\Field|Collection presale_header_id
* @property Show\Field|Collection aftersale_header_id
* @property Show\Field|Collection introduce
* @property Show\Field|Collection is_checked
* @property Show\Field|Collection out_trade_no
* @property Show\Field|Collection pay_type
* @property Show\Field|Collection pay_status
* @property Show\Field|Collection uuid
* @property Show\Field|Collection connection
* @property Show\Field|Collection queue
* @property Show\Field|Collection payload
* @property Show\Field|Collection exception
* @property Show\Field|Collection failed_at
* @property Show\Field|Collection from_user_id
* @property Show\Field|Collection send_platform
* @property Show\Field|Collection author
* @property Show\Field|Collection privilege
* @property Show\Field|Collection privilege_id
* @property Show\Field|Collection update_at
* @property Show\Field|Collection nature
* @property Show\Field|Collection training_type
* @property Show\Field|Collection id_card_no
* @property Show\Field|Collection province_id
* @property Show\Field|Collection city_id
* @property Show\Field|Collection district_id
* @property Show\Field|Collection longitude
* @property Show\Field|Collection latitude
* @property Show\Field|Collection door_image
* @property Show\Field|Collection business_license
* @property Show\Field|Collection reviewer_id
* @property Show\Field|Collection class_time
* @property Show\Field|Collection reject_reason
* @property Show\Field|Collection school
* @property Show\Field|Collection birthday
* @property Show\Field|Collection token
* @property Show\Field|Collection tokenable_type
* @property Show\Field|Collection tokenable_id
* @property Show\Field|Collection abilities
* @property Show\Field|Collection last_used_at
* @property Show\Field|Collection code
* @property Show\Field|Collection region_type
* @property Show\Field|Collection is_last
* @property Show\Field|Collection show_platform
* @property Show\Field|Collection price
* @property Show\Field|Collection region
* @property Show\Field|Collection parent_bg
* @property Show\Field|Collection student_bg
* @property Show\Field|Collection teacher_bg
* @property Show\Field|Collection organ_bg
* @property Show\Field|Collection share_post
* @property Show\Field|Collection invite_register_bg
* @property Show\Field|Collection teacher_detail_top_bg
* @property Show\Field|Collection invite_organ_confirm_bg
* @property Show\Field|Collection invite_teacher_confirm_bg
* @property Show\Field|Collection intermediary_bg
* @property Show\Field|Collection action
* @property Show\Field|Collection site_message
* @property Show\Field|Collection text_message
* @property Show\Field|Collection official_account
* @property Show\Field|Collection admin_mobile
* @property Show\Field|Collection organization
* @property Show\Field|Collection teaching_type
* @property Show\Field|Collection teacher_cert
* @property Show\Field|Collection other_cert
* @property Show\Field|Collection honor_cert
* @property Show\Field|Collection highest_education
* @property Show\Field|Collection education_id
* @property Show\Field|Collection graduate_school
* @property Show\Field|Collection speciality
* @property Show\Field|Collection graduate_cert
* @property Show\Field|Collection diploma
* @property Show\Field|Collection id_card_front
* @property Show\Field|Collection id_card_backend
* @property Show\Field|Collection real_name
* @property Show\Field|Collection real_auth_reason
* @property Show\Field|Collection picture
* @property Show\Field|Collection education_reason
* @property Show\Field|Collection teaching_year
* @property Show\Field|Collection data_status
* @property Show\Field|Collection total_out_trade_no
* @property Show\Field|Collection student_id
* @property Show\Field|Collection discount
* @property Show\Field|Collection nickname
* @property Show\Field|Collection organ_role_id
* @property Show\Field|Collection age
* @property Show\Field|Collection total_income
* @property Show\Field|Collection withdraw_balance
* @property Show\Field|Collection is_real_auth
* @property Show\Field|Collection is_education
* @property Show\Field|Collection has_teacher_cert
* @property Show\Field|Collection is_recommend
* @property Show\Field|Collection open_id
* @property Show\Field|Collection official_open_id
* @property Show\Field|Collection invite_qrcode
* @property Show\Field|Collection union_id
* @property Show\Field|Collection is_new
* @property Show\Field|Collection bank
* @property Show\Field|Collection account
*
* @method Show\Field|Collection id(string $label = null)
* @method Show\Field|Collection active_id(string $label = null)
* @method Show\Field|Collection type(string $label = null)
* @method Show\Field|Collection first_reward(string $label = null)
* @method Show\Field|Collection second_reward(string $label = null)
* @method Show\Field|Collection created_at(string $label = null)
* @method Show\Field|Collection updated_at(string $label = null)
* @method Show\Field|Collection name(string $label = null)
* @method Show\Field|Collection image(string $label = null)
* @method Show\Field|Collection object(string $label = null)
* @method Show\Field|Collection reward(string $label = null)
* @method Show\Field|Collection introduction(string $label = null)
* @method Show\Field|Collection start_time(string $label = null)
* @method Show\Field|Collection end_time(string $label = null)
* @method Show\Field|Collection status(string $label = null)
* @method Show\Field|Collection teacher_reward_type(string $label = null)
* @method Show\Field|Collection teacher_first_reward(string $label = null)
* @method Show\Field|Collection teacher_second_reward(string $label = null)
* @method Show\Field|Collection teacher_new_reward(string $label = null)
* @method Show\Field|Collection parent_reward_type(string $label = null)
* @method Show\Field|Collection parent_first_reward(string $label = null)
* @method Show\Field|Collection parent_second_reward(string $label = null)
* @method Show\Field|Collection parent_new_reward(string $label = null)
* @method Show\Field|Collection student_reward_type(string $label = null)
* @method Show\Field|Collection student_first_reward(string $label = null)
* @method Show\Field|Collection student_second_reward(string $label = null)
* @method Show\Field|Collection student_new_reward(string $label = null)
* @method Show\Field|Collection organ_reward_type(string $label = null)
* @method Show\Field|Collection organ_first_reward(string $label = null)
* @method Show\Field|Collection organ_second_reward(string $label = null)
* @method Show\Field|Collection organ_new_reward(string $label = null)
* @method Show\Field|Collection teacher_real_auth_reward(string $label = null)
* @method Show\Field|Collection teacher_cert_reward(string $label = null)
* @method Show\Field|Collection teacher_career_reward(string $label = null)
* @method Show\Field|Collection teacher_image_reward(string $label = null)
* @method Show\Field|Collection teacher_deal_reward_type(string $label = null)
* @method Show\Field|Collection deal_teacher_reward(string $label = null)
* @method Show\Field|Collection parent_deal_reward_type(string $label = null)
* @method Show\Field|Collection parent_deal_reward(string $label = null)
* @method Show\Field|Collection organ_deal_reward_type(string $label = null)
* @method Show\Field|Collection organ_deal_reward(string $label = null)
* @method Show\Field|Collection adder(string $label = null)
* @method Show\Field|Collection reason(string $label = null)
* @method Show\Field|Collection is_disabled(string $label = null)
* @method Show\Field|Collection user_id(string $label = null)
* @method Show\Field|Collection username(string $label = null)
* @method Show\Field|Collection first_child(string $label = null)
* @method Show\Field|Collection second_child(string $label = null)
* @method Show\Field|Collection activity_id(string $label = null)
* @method Show\Field|Collection project(string $label = null)
* @method Show\Field|Collection amount(string $label = null)
* @method Show\Field|Collection role(string $label = null)
* @method Show\Field|Collection deal_amount(string $label = null)
* @method Show\Field|Collection version(string $label = null)
* @method Show\Field|Collection detail(string $label = null)
* @method Show\Field|Collection is_enabled(string $label = null)
* @method Show\Field|Collection parent_id(string $label = null)
* @method Show\Field|Collection order(string $label = null)
* @method Show\Field|Collection icon(string $label = null)
* @method Show\Field|Collection uri(string $label = null)
* @method Show\Field|Collection extension(string $label = null)
* @method Show\Field|Collection permission_id(string $label = null)
* @method Show\Field|Collection menu_id(string $label = null)
* @method Show\Field|Collection slug(string $label = null)
* @method Show\Field|Collection http_method(string $label = null)
* @method Show\Field|Collection http_path(string $label = null)
* @method Show\Field|Collection role_id(string $label = null)
* @method Show\Field|Collection value(string $label = null)
* @method Show\Field|Collection mobile(string $label = null)
* @method Show\Field|Collection password(string $label = null)
* @method Show\Field|Collection email(string $label = null)
* @method Show\Field|Collection avatar(string $label = null)
* @method Show\Field|Collection personal_status(string $label = null)
* @method Show\Field|Collection remember_token(string $label = null)
* @method Show\Field|Collection last_login_time(string $label = null)
* @method Show\Field|Collection content(string $label = null)
* @method Show\Field|Collection editor(string $label = null)
* @method Show\Field|Collection region_name(string $label = null)
* @method Show\Field|Collection initial(string $label = null)
* @method Show\Field|Collection url(string $label = null)
* @method Show\Field|Collection link(string $label = null)
* @method Show\Field|Collection logo(string $label = null)
* @method Show\Field|Collection login_bg(string $label = null)
* @method Show\Field|Collection contact(string $label = null)
* @method Show\Field|Collection user_agreement(string $label = null)
* @method Show\Field|Collection is_show_full(string $label = null)
* @method Show\Field|Collection course_id(string $label = null)
* @method Show\Field|Collection teacher_id(string $label = null)
* @method Show\Field|Collection method(string $label = null)
* @method Show\Field|Collection adder_id(string $label = null)
* @method Show\Field|Collection editor_id(string $label = null)
* @method Show\Field|Collection consult_time(string $label = null)
* @method Show\Field|Collection organ_id(string $label = null)
* @method Show\Field|Collection latest_end_time(string $label = null)
* @method Show\Field|Collection course_end(string $label = null)
* @method Show\Field|Collection deal_pay(string $label = null)
* @method Show\Field|Collection confirm_course(string $label = null)
* @method Show\Field|Collection is_can_look(string $label = null)
* @method Show\Field|Collection student(string $label = null)
* @method Show\Field|Collection gender(string $label = null)
* @method Show\Field|Collection grade(string $label = null)
* @method Show\Field|Collection cover_image(string $label = null)
* @method Show\Field|Collection subject(string $label = null)
* @method Show\Field|Collection count_min(string $label = null)
* @method Show\Field|Collection count_max(string $label = null)
* @method Show\Field|Collection class_number(string $label = null)
* @method Show\Field|Collection class_price_min(string $label = null)
* @method Show\Field|Collection class_price_max(string $label = null)
* @method Show\Field|Collection class_price(string $label = null)
* @method Show\Field|Collection duration(string $label = null)
* @method Show\Field|Collection class_duration(string $label = null)
* @method Show\Field|Collection class_date(string $label = null)
* @method Show\Field|Collection class_type(string $label = null)
* @method Show\Field|Collection base_count(string $label = null)
* @method Show\Field|Collection base_price(string $label = null)
* @method Show\Field|Collection improve_count(string $label = null)
* @method Show\Field|Collection improve_price(string $label = null)
* @method Show\Field|Collection max_price(string $label = null)
* @method Show\Field|Collection adder_role(string $label = null)
* @method Show\Field|Collection class_commission(string $label = null)
* @method Show\Field|Collection course_status(string $label = null)
* @method Show\Field|Collection reviewer(string $label = null)
* @method Show\Field|Collection notes(string $label = null)
* @method Show\Field|Collection entry_number(string $label = null)
* @method Show\Field|Collection deliver_number(string $label = null)
* @method Show\Field|Collection province(string $label = null)
* @method Show\Field|Collection city(string $label = null)
* @method Show\Field|Collection district(string $label = null)
* @method Show\Field|Collection address(string $label = null)
* @method Show\Field|Collection qq_account(string $label = null)
* @method Show\Field|Collection wechat_account(string $label = null)
* @method Show\Field|Collection requirement(string $label = null)
* @method Show\Field|Collection valid_time(string $label = null)
* @method Show\Field|Collection buyer_count(string $label = null)
* @method Show\Field|Collection visit_count(string $label = null)
* @method Show\Field|Collection class_date_start(string $label = null)
* @method Show\Field|Collection class_date_end(string $label = null)
* @method Show\Field|Collection wechat(string $label = null)
* @method Show\Field|Collection tag(string $label = null)
* @method Show\Field|Collection presale_header_id(string $label = null)
* @method Show\Field|Collection aftersale_header_id(string $label = null)
* @method Show\Field|Collection introduce(string $label = null)
* @method Show\Field|Collection is_checked(string $label = null)
* @method Show\Field|Collection out_trade_no(string $label = null)
* @method Show\Field|Collection pay_type(string $label = null)
* @method Show\Field|Collection pay_status(string $label = null)
* @method Show\Field|Collection uuid(string $label = null)
* @method Show\Field|Collection connection(string $label = null)
* @method Show\Field|Collection queue(string $label = null)
* @method Show\Field|Collection payload(string $label = null)
* @method Show\Field|Collection exception(string $label = null)
* @method Show\Field|Collection failed_at(string $label = null)
* @method Show\Field|Collection from_user_id(string $label = null)
* @method Show\Field|Collection send_platform(string $label = null)
* @method Show\Field|Collection author(string $label = null)
* @method Show\Field|Collection privilege(string $label = null)
* @method Show\Field|Collection privilege_id(string $label = null)
* @method Show\Field|Collection update_at(string $label = null)
* @method Show\Field|Collection nature(string $label = null)
* @method Show\Field|Collection training_type(string $label = null)
* @method Show\Field|Collection id_card_no(string $label = null)
* @method Show\Field|Collection province_id(string $label = null)
* @method Show\Field|Collection city_id(string $label = null)
* @method Show\Field|Collection district_id(string $label = null)
* @method Show\Field|Collection longitude(string $label = null)
* @method Show\Field|Collection latitude(string $label = null)
* @method Show\Field|Collection door_image(string $label = null)
* @method Show\Field|Collection business_license(string $label = null)
* @method Show\Field|Collection reviewer_id(string $label = null)
* @method Show\Field|Collection class_time(string $label = null)
* @method Show\Field|Collection reject_reason(string $label = null)
* @method Show\Field|Collection school(string $label = null)
* @method Show\Field|Collection birthday(string $label = null)
* @method Show\Field|Collection token(string $label = null)
* @method Show\Field|Collection tokenable_type(string $label = null)
* @method Show\Field|Collection tokenable_id(string $label = null)
* @method Show\Field|Collection abilities(string $label = null)
* @method Show\Field|Collection last_used_at(string $label = null)
* @method Show\Field|Collection code(string $label = null)
* @method Show\Field|Collection region_type(string $label = null)
* @method Show\Field|Collection is_last(string $label = null)
* @method Show\Field|Collection show_platform(string $label = null)
* @method Show\Field|Collection price(string $label = null)
* @method Show\Field|Collection region(string $label = null)
* @method Show\Field|Collection parent_bg(string $label = null)
* @method Show\Field|Collection student_bg(string $label = null)
* @method Show\Field|Collection teacher_bg(string $label = null)
* @method Show\Field|Collection organ_bg(string $label = null)
* @method Show\Field|Collection share_post(string $label = null)
* @method Show\Field|Collection invite_register_bg(string $label = null)
* @method Show\Field|Collection teacher_detail_top_bg(string $label = null)
* @method Show\Field|Collection invite_organ_confirm_bg(string $label = null)
* @method Show\Field|Collection invite_teacher_confirm_bg(string $label = null)
* @method Show\Field|Collection intermediary_bg(string $label = null)
* @method Show\Field|Collection action(string $label = null)
* @method Show\Field|Collection site_message(string $label = null)
* @method Show\Field|Collection text_message(string $label = null)
* @method Show\Field|Collection official_account(string $label = null)
* @method Show\Field|Collection admin_mobile(string $label = null)
* @method Show\Field|Collection organization(string $label = null)
* @method Show\Field|Collection teaching_type(string $label = null)
* @method Show\Field|Collection teacher_cert(string $label = null)
* @method Show\Field|Collection other_cert(string $label = null)
* @method Show\Field|Collection honor_cert(string $label = null)
* @method Show\Field|Collection highest_education(string $label = null)
* @method Show\Field|Collection education_id(string $label = null)
* @method Show\Field|Collection graduate_school(string $label = null)
* @method Show\Field|Collection speciality(string $label = null)
* @method Show\Field|Collection graduate_cert(string $label = null)
* @method Show\Field|Collection diploma(string $label = null)
* @method Show\Field|Collection id_card_front(string $label = null)
* @method Show\Field|Collection id_card_backend(string $label = null)
* @method Show\Field|Collection real_name(string $label = null)
* @method Show\Field|Collection real_auth_reason(string $label = null)
* @method Show\Field|Collection picture(string $label = null)
* @method Show\Field|Collection education_reason(string $label = null)
* @method Show\Field|Collection teaching_year(string $label = null)
* @method Show\Field|Collection data_status(string $label = null)
* @method Show\Field|Collection total_out_trade_no(string $label = null)
* @method Show\Field|Collection student_id(string $label = null)
* @method Show\Field|Collection discount(string $label = null)
* @method Show\Field|Collection nickname(string $label = null)
* @method Show\Field|Collection organ_role_id(string $label = null)
* @method Show\Field|Collection age(string $label = null)
* @method Show\Field|Collection total_income(string $label = null)
* @method Show\Field|Collection withdraw_balance(string $label = null)
* @method Show\Field|Collection is_real_auth(string $label = null)
* @method Show\Field|Collection is_education(string $label = null)
* @method Show\Field|Collection has_teacher_cert(string $label = null)
* @method Show\Field|Collection is_recommend(string $label = null)
* @method Show\Field|Collection open_id(string $label = null)
* @method Show\Field|Collection official_open_id(string $label = null)
* @method Show\Field|Collection invite_qrcode(string $label = null)
* @method Show\Field|Collection union_id(string $label = null)
* @method Show\Field|Collection is_new(string $label = null)
* @method Show\Field|Collection bank(string $label = null)
* @method Show\Field|Collection account(string $label = null)
*/
class Show {}
/**
*/
class Form {}
}
namespace Dcat\Admin\Grid {
/**
*/
class Column {}
/**
*/
class Filter {}
}
namespace Dcat\Admin\Show {
/**
*/
class Field {}
}