-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex-all.html
3351 lines (3339 loc) · 398 KB
/
index-all.html
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="zh">
<head>
<!-- Generated by javadoc (1.8.0_221) on Sun Nov 03 19:54:06 CST 2019 -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>索引 (spring-boot-plus 1.4.0 API)</title>
<meta name="date" content="2019-11-03">
<link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
<script type="text/javascript" src="script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
try {
if (location.href.indexOf('is-external=true') == -1) {
parent.document.title="\u7D22\u5F15 (spring-boot-plus 1.4.0 API)";
}
}
catch(err) {
}
//-->
</script>
<noscript>
<div>您的浏览器已禁用 JavaScript。</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!-- -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="跳过导航链接">跳过导航链接</a></div>
<a name="navbar.top.firstrow">
<!-- -->
</a>
<ul class="navList" title="导航">
<li><a href="overview-summary.html">概览</a></li>
<li>程序包</li>
<li>类</li>
<li>使用</li>
<li><a href="overview-tree.html">树</a></li>
<li><a href="deprecated-list.html">已过时</a></li>
<li class="navBarCell1Rev">索引</li>
<li><a href="help-doc.html">帮助</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li>上一个</li>
<li>下一个</li>
</ul>
<ul class="navList">
<li><a href="index.html?index-all.html" target="_top">框架</a></li>
<li><a href="index-all.html" target="_top">无框架</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="allclasses-noframe.html">所有类</a></li>
</ul>
<div>
<script type="text/javascript"><!--
allClassesLink = document.getElementById("allclasses_navbar_top");
if(window==top) {
allClassesLink.style.display = "block";
}
else {
allClassesLink.style.display = "none";
}
//-->
</script>
</div>
<a name="skip.navbar.top">
<!-- -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<div class="contentContainer"><a href="#I:A">A</a> <a href="#I:B">B</a> <a href="#I:C">C</a> <a href="#I:D">D</a> <a href="#I:E">E</a> <a href="#I:F">F</a> <a href="#I:G">G</a> <a href="#I:H">H</a> <a href="#I:I">I</a> <a href="#I:J">J</a> <a href="#I:K">K</a> <a href="#I:L">L</a> <a href="#I:M">M</a> <a href="#I:N">N</a> <a href="#I:O">O</a> <a href="#I:P">P</a> <a href="#I:Q">Q</a> <a href="#I:R">R</a> <a href="#I:S">S</a> <a href="#I:T">T</a> <a href="#I:U">U</a> <a href="#I:V">V</a> <a href="#I:X">X</a> <a href="#I:Y">Y</a> <a name="I:A">
<!-- -->
</a>
<h2 class="title">A</h2>
<dl>
<dt><a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html" title="io.geekidea.springbootplus.core.aop中的类"><span class="typeNameLink">AbstractLogAop</span></a> - <a href="io/geekidea/springbootplus/core/aop/package-summary.html">io.geekidea.springbootplus.core.aop</a>中的类</dt>
<dd>
<div class="block">
Controller Aop 抽象类
获取响应结果信息
日志输出类型:print-type
1.</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html#AbstractLogAop--">AbstractLogAop()</a></span> - 类 的构造器io.geekidea.springbootplus.core.aop.<a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html" title="io.geekidea.springbootplus.core.aop中的类">AbstractLogAop</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html#addFooBar-io.geekidea.springbootplus.foobar.entity.FooBar-">addFooBar(FooBar)</a></span> - 类 中的方法io.geekidea.springbootplus.foobar.controller.<a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html" title="io.geekidea.springbootplus.foobar.controller中的类">FooBarController</a></dt>
<dd>
<div class="block">添加FooBar</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/config/SpringBootPlusWebMvcConfig.html#addInterceptors-org.springframework.web.servlet.config.annotation.InterceptorRegistry-">addInterceptors(InterceptorRegistry)</a></span> - 类 中的方法io.geekidea.springbootplus.core.config.<a href="io/geekidea/springbootplus/core/config/SpringBootPlusWebMvcConfig.html" title="io.geekidea.springbootplus.core.config中的类">SpringBootPlusWebMvcConfig</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/config/SpringBootPlusWebMvcConfig.html#addResourceHandlers-org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry-">addResourceHandlers(ResourceHandlerRegistry)</a></span> - 类 中的方法io.geekidea.springbootplus.core.config.<a href="io/geekidea/springbootplus/core/config/SpringBootPlusWebMvcConfig.html" title="io.geekidea.springbootplus.core.config中的类">SpringBootPlusWebMvcConfig</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysDepartmentController.html#addSysDepartment-io.geekidea.springbootplus.system.entity.SysDepartment-">addSysDepartment(SysDepartment)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysDepartmentController.html" title="io.geekidea.springbootplus.system.controller中的类">SysDepartmentController</a></dt>
<dd>
<div class="block">添加部门</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysLogController.html#addSysLog-io.geekidea.springbootplus.system.entity.SysLog-">addSysLog(SysLog)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysLogController.html" title="io.geekidea.springbootplus.system.controller中的类">SysLogController</a></dt>
<dd>
<div class="block">添加系统日志</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysPermissionController.html#addSysPermission-io.geekidea.springbootplus.system.entity.SysPermission-">addSysPermission(SysPermission)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysPermissionController.html" title="io.geekidea.springbootplus.system.controller中的类">SysPermissionController</a></dt>
<dd>
<div class="block">添加系统权限</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysRoleController.html#addSysRole-io.geekidea.springbootplus.system.param.sysrole.AddSysRoleParam-">addSysRole(AddSysRoleParam)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysRoleController.html" title="io.geekidea.springbootplus.system.controller中的类">SysRoleController</a></dt>
<dd>
<div class="block">添加系统角色</div>
</dd>
<dt><a href="io/geekidea/springbootplus/system/param/sysrole/AddSysRoleParam.html" title="io.geekidea.springbootplus.system.param.sysrole中的类"><span class="typeNameLink">AddSysRoleParam</span></a> - <a href="io/geekidea/springbootplus/system/param/sysrole/package-summary.html">io.geekidea.springbootplus.system.param.sysrole</a>中的类</dt>
<dd>
<div class="block">添加角色</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/param/sysrole/AddSysRoleParam.html#AddSysRoleParam--">AddSysRoleParam()</a></span> - 类 的构造器io.geekidea.springbootplus.system.param.sysrole.<a href="io/geekidea/springbootplus/system/param/sysrole/AddSysRoleParam.html" title="io.geekidea.springbootplus.system.param.sysrole中的类">AddSysRoleParam</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/convert/SysRoleConvert.html#addSysRoleParamToSysRole-io.geekidea.springbootplus.system.param.sysrole.AddSysRoleParam-">addSysRoleParamToSysRole(AddSysRoleParam)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.convert.<a href="io/geekidea/springbootplus/system/convert/SysRoleConvert.html" title="io.geekidea.springbootplus.system.convert中的接口">SysRoleConvert</a></dt>
<dd>
<div class="block">AddSysRoleParam转SysRole</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/convert/SysRoleConvertImpl.html#addSysRoleParamToSysRole-io.geekidea.springbootplus.system.param.sysrole.AddSysRoleParam-">addSysRoleParamToSysRole(AddSysRoleParam)</a></span> - 类 中的方法io.geekidea.springbootplus.system.convert.<a href="io/geekidea/springbootplus/system/convert/SysRoleConvertImpl.html" title="io.geekidea.springbootplus.system.convert中的类">SysRoleConvertImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysUserController.html#addSysUser-io.geekidea.springbootplus.system.entity.SysUser-">addSysUser(SysUser)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysUserController.html" title="io.geekidea.springbootplus.system.controller中的类">SysUserController</a></dt>
<dd>
<div class="block">添加系统用户</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/constant/CommonConstant.html#ADMIN_LOGIN">ADMIN_LOGIN</a></span> - 接口 中的静态变量io.geekidea.springbootplus.constant.<a href="io/geekidea/springbootplus/constant/CommonConstant.html" title="io.geekidea.springbootplus.constant中的接口">CommonConstant</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/constant/CommonConstant.html#ADMIN_ROLE_NAME">ADMIN_ROLE_NAME</a></span> - 接口 中的静态变量io.geekidea.springbootplus.constant.<a href="io/geekidea/springbootplus/constant/CommonConstant.html" title="io.geekidea.springbootplus.constant中的接口">CommonConstant</a></dt>
<dd>
<div class="block">管理员角色名称</div>
</dd>
<dt><a href="io/geekidea/springbootplus/util/AnsiUtil.html" title="io.geekidea.springbootplus.util中的类"><span class="typeNameLink">AnsiUtil</span></a> - <a href="io/geekidea/springbootplus/util/package-summary.html">io.geekidea.springbootplus.util</a>中的类</dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/AnsiUtil.html#AnsiUtil--">AnsiUtil()</a></span> - 类 的构造器io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/AnsiUtil.html" title="io.geekidea.springbootplus.util中的类">AnsiUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/properties/SpringBootPlusAopProperties.AopConfig.html#AopConfig--">AopConfig()</a></span> - 类 的构造器io.geekidea.springbootplus.core.properties.<a href="io/geekidea/springbootplus/core/properties/SpringBootPlusAopProperties.AopConfig.html" title="io.geekidea.springbootplus.core.properties中的类">SpringBootPlusAopProperties.AopConfig</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/api/ApiCode.html" title="io.geekidea.springbootplus.common.api中的枚举"><span class="typeNameLink">ApiCode</span></a> - <a href="io/geekidea/springbootplus/common/api/package-summary.html">io.geekidea.springbootplus.common.api</a>中的枚举</dt>
<dd>
<div class="block">
REST API 响应码
</div>
</dd>
<dt><a href="io/geekidea/springbootplus/common/api/ApiController.html" title="io.geekidea.springbootplus.common.api中的类"><span class="typeNameLink">ApiController</span></a> - <a href="io/geekidea/springbootplus/common/api/package-summary.html">io.geekidea.springbootplus.common.api</a>中的类</dt>
<dd>
<div class="block">
ApiResultEST API 公共控制器
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiController.html#ApiController--">ApiController()</a></span> - 类 的构造器io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiController.html" title="io.geekidea.springbootplus.common.api中的类">ApiController</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/controller/ApiDocController.html" title="io.geekidea.springbootplus.common.controller中的类"><span class="typeNameLink">ApiDocController</span></a> - <a href="io/geekidea/springbootplus/common/controller/package-summary.html">io.geekidea.springbootplus.common.controller</a>中的类</dt>
<dd>
<div class="block">
Api文档
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/controller/ApiDocController.html#ApiDocController--">ApiDocController()</a></span> - 类 的构造器io.geekidea.springbootplus.common.controller.<a href="io/geekidea/springbootplus/common/controller/ApiDocController.html" title="io.geekidea.springbootplus.common.controller中的类">ApiDocController</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/api/ApiResult.html" title="io.geekidea.springbootplus.common.api中的类"><span class="typeNameLink">ApiResult</span></a><<a href="io/geekidea/springbootplus/common/api/ApiResult.html" title="ApiResult中的类型参数">T</a>> - <a href="io/geekidea/springbootplus/common/api/package-summary.html">io.geekidea.springbootplus.common.api</a>中的类</dt>
<dd>
<div class="block">
REST API 返回结果
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiResult.html#ApiResult--">ApiResult()</a></span> - 类 的构造器io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiResult.html" title="io.geekidea.springbootplus.common.api中的类">ApiResult</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html#argsArrayToJsonString-java.lang.Object:A-">argsArrayToJsonString(Object[])</a></span> - 类 中的方法io.geekidea.springbootplus.core.aop.<a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html" title="io.geekidea.springbootplus.core.aop中的类">AbstractLogAop</a></dt>
<dd>
<div class="block">请求参数拼装</div>
</dd>
<dt><a href="io/geekidea/springbootplus/common/api/Assert.html" title="io.geekidea.springbootplus.common.api中的类"><span class="typeNameLink">Assert</span></a> - <a href="io/geekidea/springbootplus/common/api/package-summary.html">io.geekidea.springbootplus.common.api</a>中的类</dt>
<dd>
<div class="block">
REST API 业务断言<br>
参考:org.junit.Assert
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/Assert.html#Assert--">Assert()</a></span> - 类 的构造器io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/Assert.html" title="io.geekidea.springbootplus.common.api中的类">Assert</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/exception/GlobalExceptionHandler.html#authenticationExceptionHandler-org.apache.shiro.authc.AuthenticationException-">authenticationExceptionHandler(AuthenticationException)</a></span> - 类 中的方法io.geekidea.springbootplus.common.exception.<a href="io/geekidea/springbootplus/common/exception/GlobalExceptionHandler.html" title="io.geekidea.springbootplus.common.exception中的类">GlobalExceptionHandler</a></dt>
<dd>
<div class="block">登陆授权异常处理</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/config/ShiroConfig.html#authenticator-io.geekidea.springbootplus.shiro.cache.LoginRedisService-">authenticator(LoginRedisService)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.config.<a href="io/geekidea/springbootplus/shiro/config/ShiroConfig.html" title="io.geekidea.springbootplus.shiro.config中的类">ShiroConfig</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/config/ShiroConfig.html#authorizationAttributeSourceAdvisor-org.apache.shiro.mgt.SecurityManager-">authorizationAttributeSourceAdvisor(SecurityManager)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.config.<a href="io/geekidea/springbootplus/shiro/config/ShiroConfig.html" title="io.geekidea.springbootplus.shiro.config中的类">ShiroConfig</a></dt>
<dd> </dd>
</dl>
<a name="I:B">
<!-- -->
</a>
<h2 class="title">B</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/constant/CommonConstant.html#BASE64_PREFIX">BASE64_PREFIX</a></span> - 接口 中的静态变量io.geekidea.springbootplus.constant.<a href="io/geekidea/springbootplus/constant/CommonConstant.html" title="io.geekidea.springbootplus.constant中的接口">CommonConstant</a></dt>
<dd>
<div class="block">base64前缀</div>
</dd>
<dt><a href="io/geekidea/springbootplus/common/controller/BaseController.html" title="io.geekidea.springbootplus.common.controller中的类"><span class="typeNameLink">BaseController</span></a> - <a href="io/geekidea/springbootplus/common/controller/package-summary.html">io.geekidea.springbootplus.common.controller</a>中的类</dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/controller/BaseController.html#BaseController--">BaseController()</a></span> - 类 的构造器io.geekidea.springbootplus.common.controller.<a href="io/geekidea/springbootplus/common/controller/BaseController.html" title="io.geekidea.springbootplus.common.controller中的类">BaseController</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/entity/BaseEntity.html" title="io.geekidea.springbootplus.common.entity中的类"><span class="typeNameLink">BaseEntity</span></a> - <a href="io/geekidea/springbootplus/common/entity/package-summary.html">io.geekidea.springbootplus.common.entity</a>中的类</dt>
<dd>
<div class="block">实体父类</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/entity/BaseEntity.html#BaseEntity--">BaseEntity()</a></span> - 类 的构造器io.geekidea.springbootplus.common.entity.<a href="io/geekidea/springbootplus/common/entity/BaseEntity.html" title="io.geekidea.springbootplus.common.entity中的类">BaseEntity</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/enums/BaseEnum.html" title="io.geekidea.springbootplus.common.enums中的接口"><span class="typeNameLink">BaseEnum</span></a> - <a href="io/geekidea/springbootplus/common/enums/package-summary.html">io.geekidea.springbootplus.common.enums</a>中的接口</dt>
<dd>
<div class="block">枚举类型父接口</div>
</dd>
<dt><a href="io/geekidea/springbootplus/util/BaseEnumUtil.html" title="io.geekidea.springbootplus.util中的类"><span class="typeNameLink">BaseEnumUtil</span></a> - <a href="io/geekidea/springbootplus/util/package-summary.html">io.geekidea.springbootplus.util</a>中的类</dt>
<dd>
<div class="block">BaseEnum枚举工具类</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/BaseEnumUtil.html#BaseEnumUtil--">BaseEnumUtil()</a></span> - 类 的构造器io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/BaseEnumUtil.html" title="io.geekidea.springbootplus.util中的类">BaseEnumUtil</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/service/BaseService.html" title="io.geekidea.springbootplus.common.service中的接口"><span class="typeNameLink">BaseService</span></a><<a href="io/geekidea/springbootplus/common/service/BaseService.html" title="BaseService中的类型参数">T</a>> - <a href="io/geekidea/springbootplus/common/service/package-summary.html">io.geekidea.springbootplus.common.service</a>中的接口</dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/service/impl/BaseServiceImpl.html" title="io.geekidea.springbootplus.common.service.impl中的类"><span class="typeNameLink">BaseServiceImpl</span></a><<a href="io/geekidea/springbootplus/common/service/impl/BaseServiceImpl.html" title="BaseServiceImpl中的类型参数">M</a> extends com.baomidou.mybatisplus.core.mapper.BaseMapper<<a href="io/geekidea/springbootplus/common/service/impl/BaseServiceImpl.html" title="BaseServiceImpl中的类型参数">T</a>>,<a href="io/geekidea/springbootplus/common/service/impl/BaseServiceImpl.html" title="BaseServiceImpl中的类型参数">T</a>> - <a href="io/geekidea/springbootplus/common/service/impl/package-summary.html">io.geekidea.springbootplus.common.service.impl</a>中的类</dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/service/impl/BaseServiceImpl.html#BaseServiceImpl--">BaseServiceImpl()</a></span> - 类 的构造器io.geekidea.springbootplus.common.service.impl.<a href="io/geekidea/springbootplus/common/service/impl/BaseServiceImpl.html" title="io.geekidea.springbootplus.common.service.impl中的类">BaseServiceImpl</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/util/BrowserUtil.html" title="io.geekidea.springbootplus.util中的类"><span class="typeNameLink">BrowserUtil</span></a> - <a href="io/geekidea/springbootplus/util/package-summary.html">io.geekidea.springbootplus.util</a>中的类</dt>
<dd>
<div class="block"><code>
浏览器工具类<br/>
1.获取当前浏览器名称
2.判断当前用户的浏览器
</code></div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/jwt/JwtToken.html#build-java.lang.String-java.lang.String-java.lang.String-long-">build(String, String, String, long)</a></span> - 类 中的静态方法io.geekidea.springbootplus.shiro.jwt.<a href="io/geekidea/springbootplus/shiro/jwt/JwtToken.html" title="io.geekidea.springbootplus.shiro.jwt中的类">JwtToken</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/MapUtil.html#build--">build()</a></span> - 类 中的方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/MapUtil.html" title="io.geekidea.springbootplus.util中的类">MapUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/MapUtil.html#builder--">builder()</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/MapUtil.html" title="io.geekidea.springbootplus.util中的类">MapUtil</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/exception/BusinessException.html" title="io.geekidea.springbootplus.common.exception中的类"><span class="typeNameLink">BusinessException</span></a> - <a href="io/geekidea/springbootplus/common/exception/package-summary.html">io.geekidea.springbootplus.common.exception</a>中的异常错误</dt>
<dd>
<div class="block">业务异常</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/exception/BusinessException.html#BusinessException-java.lang.String-">BusinessException(String)</a></span> - 异常错误 的构造器io.geekidea.springbootplus.common.exception.<a href="io/geekidea/springbootplus/common/exception/BusinessException.html" title="io.geekidea.springbootplus.common.exception中的类">BusinessException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/exception/BusinessException.html#BusinessException-java.lang.Integer-java.lang.String-">BusinessException(Integer, String)</a></span> - 异常错误 的构造器io.geekidea.springbootplus.common.exception.<a href="io/geekidea/springbootplus/common/exception/BusinessException.html" title="io.geekidea.springbootplus.common.exception中的类">BusinessException</a></dt>
<dd> </dd>
</dl>
<a name="I:C">
<!-- -->
</a>
<h2 class="title">C</h2>
<dl>
<dt><a href="io/geekidea/springbootplus/constant/CacheKey.html" title="io.geekidea.springbootplus.constant中的接口"><span class="typeNameLink">CacheKey</span></a> - <a href="io/geekidea/springbootplus/constant/package-summary.html">io.geekidea.springbootplus.constant</a>中的接口</dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/cache/impl/LoginRedisServiceImpl.html#cacheLoginInfo-io.geekidea.springbootplus.shiro.jwt.JwtToken-io.geekidea.springbootplus.shiro.vo.LoginSysUserVo-">cacheLoginInfo(JwtToken, LoginSysUserVo)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.cache.impl.<a href="io/geekidea/springbootplus/shiro/cache/impl/LoginRedisServiceImpl.html" title="io.geekidea.springbootplus.shiro.cache.impl中的类">LoginRedisServiceImpl</a></dt>
<dd>
<div class="block">key-value: 有过期时间-->token过期时间
1. tokenMd5:jwtTokenRedisVo
2. username:loginSysUserRedisVo
3. username:salt
hash: 没有过期时间,统计在线的用户信息
username:num</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/cache/LoginRedisService.html#cacheLoginInfo-io.geekidea.springbootplus.shiro.jwt.JwtToken-io.geekidea.springbootplus.shiro.vo.LoginSysUserVo-">cacheLoginInfo(JwtToken, LoginSysUserVo)</a></span> - 接口 中的方法io.geekidea.springbootplus.shiro.cache.<a href="io/geekidea/springbootplus/shiro/cache/LoginRedisService.html" title="io.geekidea.springbootplus.shiro.cache中的接口">LoginRedisService</a></dt>
<dd>
<div class="block">缓存登陆信息</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/RedisCacheConfig.html#cacheManager-org.springframework.data.redis.connection.RedisConnectionFactory-">cacheManager(RedisConnectionFactory)</a></span> - 类 中的方法io.geekidea.springbootplus.config.<a href="io/geekidea/springbootplus/config/RedisCacheConfig.html" title="io.geekidea.springbootplus.config中的类">RedisCacheConfig</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysUserServiceImpl.html#checkDepartmentAndRole-java.lang.Long-java.lang.Long-">checkDepartmentAndRole(Long, Long)</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysUserServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysUserServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysUserService.html#checkDepartmentAndRole-java.lang.Long-java.lang.Long-">checkDepartmentAndRole(Long, Long)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysUserService.html" title="io.geekidea.springbootplus.system.service中的接口">SysUserService</a></dt>
<dd>
<div class="block">检验部门和角色是否存在并且已启用</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/service/impl/LoginServiceImpl.html#checkVerifyCode-java.lang.String-java.lang.String-">checkVerifyCode(String, String)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.service.impl.<a href="io/geekidea/springbootplus/shiro/service/impl/LoginServiceImpl.html" title="io.geekidea.springbootplus.shiro.service.impl中的类">LoginServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/service/LoginService.html#checkVerifyCode-java.lang.String-java.lang.String-">checkVerifyCode(String, String)</a></span> - 接口 中的方法io.geekidea.springbootplus.shiro.service.<a href="io/geekidea/springbootplus/shiro/service/LoginService.html" title="io.geekidea.springbootplus.shiro.service中的接口">LoginService</a></dt>
<dd>
<div class="block">检查验证码是否正确</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/BrowserUtil.html#CHROME">CHROME</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/BrowserUtil.html" title="io.geekidea.springbootplus.util中的类">BrowserUtil</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/shiro/vo/ClientInfo.html" title="io.geekidea.springbootplus.shiro.vo中的类"><span class="typeNameLink">ClientInfo</span></a> - <a href="io/geekidea/springbootplus/shiro/vo/package-summary.html">io.geekidea.springbootplus.shiro.vo</a>中的类</dt>
<dd>
<div class="block">
用户客户端信息对象
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/vo/ClientInfo.html#ClientInfo--">ClientInfo()</a></span> - 类 的构造器io.geekidea.springbootplus.shiro.vo.<a href="io/geekidea/springbootplus/shiro/vo/ClientInfo.html" title="io.geekidea.springbootplus.shiro.vo中的类">ClientInfo</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/util/ClientInfoUtil.html" title="io.geekidea.springbootplus.util中的类"><span class="typeNameLink">ClientInfoUtil</span></a> - <a href="io/geekidea/springbootplus/util/package-summary.html">io.geekidea.springbootplus.util</a>中的类</dt>
<dd>
<div class="block">
用户客户端信息工具类
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/ClientInfoUtil.html#ClientInfoUtil--">ClientInfoUtil()</a></span> - 类 的构造器io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/ClientInfoUtil.html" title="io.geekidea.springbootplus.util中的类">ClientInfoUtil</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/constant/CommonConstant.html" title="io.geekidea.springbootplus.constant中的接口"><span class="typeNameLink">CommonConstant</span></a> - <a href="io/geekidea/springbootplus/constant/package-summary.html">io.geekidea.springbootplus.constant</a>中的接口</dt>
<dd>
<div class="block">常量</div>
</dd>
<dt><a href="io/geekidea/springbootplus/common/vo/CommonIdName.html" title="io.geekidea.springbootplus.common.vo中的类"><span class="typeNameLink">CommonIdName</span></a> - <a href="io/geekidea/springbootplus/common/vo/package-summary.html">io.geekidea.springbootplus.common.vo</a>中的类</dt>
<dd>
<div class="block">
公共ID-NAME-VO对象
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/vo/CommonIdName.html#CommonIdName-java.lang.String-java.lang.String-">CommonIdName(String, String)</a></span> - 类 的构造器io.geekidea.springbootplus.common.vo.<a href="io/geekidea/springbootplus/common/vo/CommonIdName.html" title="io.geekidea.springbootplus.common.vo中的类">CommonIdName</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/vo/CommonIdName.html#CommonIdName--">CommonIdName()</a></span> - 类 的构造器io.geekidea.springbootplus.common.vo.<a href="io/geekidea/springbootplus/common/vo/CommonIdName.html" title="io.geekidea.springbootplus.common.vo中的类">CommonIdName</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/constant/CommonRedisKey.html" title="io.geekidea.springbootplus.constant中的接口"><span class="typeNameLink">CommonRedisKey</span></a> - <a href="io/geekidea/springbootplus/constant/package-summary.html">io.geekidea.springbootplus.constant</a>中的接口</dt>
<dd>
<div class="block">
redis key 常量
</div>
</dd>
<dt><a href="io/geekidea/springbootplus/util/ContentTypeUtil.html" title="io.geekidea.springbootplus.util中的类"><span class="typeNameLink">ContentTypeUtil</span></a> - <a href="io/geekidea/springbootplus/util/package-summary.html">io.geekidea.springbootplus.util</a>中的类</dt>
<dd>
<div class="block">获取文件的内容类型
mime-type参考:https://svn.apache.org/viewvc/httpd/httpd/trunk/docs/conf/mime.types?</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/ContentTypeUtil.html#ContentTypeUtil--">ContentTypeUtil()</a></span> - 类 的构造器io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/ContentTypeUtil.html" title="io.geekidea.springbootplus.util中的类">ContentTypeUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/converter/StringToDateConverter.html#convert-java.lang.String-">convert(String)</a></span> - 类 中的方法io.geekidea.springbootplus.config.converter.<a href="io/geekidea/springbootplus/config/converter/StringToDateConverter.html" title="io.geekidea.springbootplus.config.converter中的类">StringToDateConverter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/converter/StringToDateUtil.html#convert-java.lang.String-">convert(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.config.converter.<a href="io/geekidea/springbootplus/config/converter/StringToDateUtil.html" title="io.geekidea.springbootplus.config.converter中的类">StringToDateUtil</a></dt>
<dd>
<div class="block"><code>
1.如果日期字符串为空,则直接返回空
2.使用格式化组进行格式化,如果解析成功,则直接返回
4.否则,抛出非法参数异常</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/converter/StringToDoubleConverter.html#convert-java.lang.String-">convert(String)</a></span> - 类 中的方法io.geekidea.springbootplus.config.converter.<a href="io/geekidea/springbootplus/config/converter/StringToDoubleConverter.html" title="io.geekidea.springbootplus.config.converter中的类">StringToDoubleConverter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/converter/StringToDoubleUtil.html#convert-java.lang.String-">convert(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.config.converter.<a href="io/geekidea/springbootplus/config/converter/StringToDoubleUtil.html" title="io.geekidea.springbootplus.config.converter中的类">StringToDoubleUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/converter/StringToIntegerConverter.html#convert-java.lang.String-">convert(String)</a></span> - 类 中的方法io.geekidea.springbootplus.config.converter.<a href="io/geekidea/springbootplus/config/converter/StringToIntegerConverter.html" title="io.geekidea.springbootplus.config.converter中的类">StringToIntegerConverter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/converter/StringToIntegerUtil.html#convert-java.lang.String-">convert(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.config.converter.<a href="io/geekidea/springbootplus/config/converter/StringToIntegerUtil.html" title="io.geekidea.springbootplus.config.converter中的类">StringToIntegerUtil</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/config/converter/ConverterConfig.html" title="io.geekidea.springbootplus.config.converter中的类"><span class="typeNameLink">ConverterConfig</span></a> - <a href="io/geekidea/springbootplus/config/converter/package-summary.html">io.geekidea.springbootplus.config.converter</a>中的类</dt>
<dd>
<div class="block">转换器配置</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/converter/ConverterConfig.html#ConverterConfig--">ConverterConfig()</a></span> - 类 的构造器io.geekidea.springbootplus.config.converter.<a href="io/geekidea/springbootplus/config/converter/ConverterConfig.html" title="io.geekidea.springbootplus.config.converter中的类">ConverterConfig</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysPermissionServiceImpl.html#convertSysPermissionTreeVoList-java.util.List-">convertSysPermissionTreeVoList(List<SysPermission>)</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysPermissionServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysPermissionServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysPermissionService.html#convertSysPermissionTreeVoList-java.util.List-">convertSysPermissionTreeVoList(List<SysPermission>)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysPermissionService.html" title="io.geekidea.springbootplus.system.service中的接口">SysPermissionService</a></dt>
<dd>
<div class="block">转换权限列表为树形菜单</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/config/SpringBootPlusCorsConfig.html#corsFilter-io.geekidea.springbootplus.core.properties.SpringBootPlusCorsProperties-">corsFilter(SpringBootPlusCorsProperties)</a></span> - 类 中的方法io.geekidea.springbootplus.core.config.<a href="io/geekidea/springbootplus/core/config/SpringBootPlusCorsConfig.html" title="io.geekidea.springbootplus.core.config中的类">SpringBootPlusCorsConfig</a></dt>
<dd>
<div class="block">CORS跨域设置</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/Swagger2Config.html#createRestApi--">createRestApi()</a></span> - 类 中的方法io.geekidea.springbootplus.config.<a href="io/geekidea/springbootplus/config/Swagger2Config.html" title="io.geekidea.springbootplus.config中的类">Swagger2Config</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/jwt/JwtFilter.html#createToken-javax.servlet.ServletRequest-javax.servlet.ServletResponse-">createToken(ServletRequest, ServletResponse)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.jwt.<a href="io/geekidea/springbootplus/shiro/jwt/JwtFilter.html" title="io.geekidea.springbootplus.shiro.jwt中的类">JwtFilter</a></dt>
<dd>
<div class="block">将JWT Token包装成AuthenticationToken</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/config/ShiroConfig.html#credentialsMatcher--">credentialsMatcher()</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.config.<a href="io/geekidea/springbootplus/shiro/config/ShiroConfig.html" title="io.geekidea.springbootplus.shiro.config中的类">ShiroConfig</a></dt>
<dd> </dd>
</dl>
<a name="I:D">
<!-- -->
</a>
<h2 class="title">D</h2>
<dl>
<dt><a href="io/geekidea/springbootplus/common/exception/DaoException.html" title="io.geekidea.springbootplus.common.exception中的类"><span class="typeNameLink">DaoException</span></a> - <a href="io/geekidea/springbootplus/common/exception/package-summary.html">io.geekidea.springbootplus.common.exception</a>中的异常错误</dt>
<dd>
<div class="block">DAO异常</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/exception/DaoException.html#DaoException-java.lang.String-">DaoException(String)</a></span> - 异常错误 的构造器io.geekidea.springbootplus.common.exception.<a href="io/geekidea/springbootplus/common/exception/DaoException.html" title="io.geekidea.springbootplus.common.exception中的类">DaoException</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/exception/DaoException.html#DaoException-java.lang.Integer-java.lang.String-">DaoException(Integer, String)</a></span> - 异常错误 的构造器io.geekidea.springbootplus.common.exception.<a href="io/geekidea/springbootplus/common/exception/DaoException.html" title="io.geekidea.springbootplus.common.exception中的类">DaoException</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/constant/DatePattern.html" title="io.geekidea.springbootplus.constant中的接口"><span class="typeNameLink">DatePattern</span></a> - <a href="io/geekidea/springbootplus/constant/package-summary.html">io.geekidea.springbootplus.constant</a>中的接口</dt>
<dd>
<div class="block">
日期格式常量
</div>
</dd>
<dt><a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类"><span class="typeNameLink">DateUtil</span></a> - <a href="io/geekidea/springbootplus/util/package-summary.html">io.geekidea.springbootplus.util</a>中的类</dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DateUtil.html#DateUtil--">DateUtil()</a></span> - 类 的构造器io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类">DateUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/constant/CommonConstant.html#DEFAULT_HEAD_URL">DEFAULT_HEAD_URL</a></span> - 接口 中的静态变量io.geekidea.springbootplus.constant.<a href="io/geekidea/springbootplus/constant/CommonConstant.html" title="io.geekidea.springbootplus.constant中的接口">CommonConstant</a></dt>
<dd>
<div class="block">默认头像</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/constant/CommonConstant.html#DEFAULT_PAGE_INDEX">DEFAULT_PAGE_INDEX</a></span> - 接口 中的静态变量io.geekidea.springbootplus.constant.<a href="io/geekidea/springbootplus/constant/CommonConstant.html" title="io.geekidea.springbootplus.constant中的接口">CommonConstant</a></dt>
<dd>
<div class="block">默认页码为1</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/constant/CommonConstant.html#DEFAULT_PAGE_SIZE">DEFAULT_PAGE_SIZE</a></span> - 接口 中的静态变量io.geekidea.springbootplus.constant.<a href="io/geekidea/springbootplus/constant/CommonConstant.html" title="io.geekidea.springbootplus.constant中的接口">CommonConstant</a></dt>
<dd>
<div class="block">默认页大小为10</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DownloadUtil.DefaultDownloadHandler.html#DefaultDownloadHandler--">DefaultDownloadHandler()</a></span> - 类 的构造器io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DownloadUtil.DefaultDownloadHandler.html" title="io.geekidea.springbootplus.util中的类">DownloadUtil.DefaultDownloadHandler</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/param/OrderQueryParam.html#defaultOrder-com.baomidou.mybatisplus.core.metadata.OrderItem-">defaultOrder(OrderItem)</a></span> - 类 中的方法io.geekidea.springbootplus.common.param.<a href="io/geekidea/springbootplus/common/param/OrderQueryParam.html" title="io.geekidea.springbootplus.common.param中的类">OrderQueryParam</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/param/OrderQueryParam.html#defaultOrders-java.util.List-">defaultOrders(List<OrderItem>)</a></span> - 类 中的方法io.geekidea.springbootplus.common.param.<a href="io/geekidea/springbootplus/common/param/OrderQueryParam.html" title="io.geekidea.springbootplus.common.param中的类">OrderQueryParam</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/UploadUtil.DefaultUploadFileNameHandleImpl.html#DefaultUploadFileNameHandleImpl--">DefaultUploadFileNameHandleImpl()</a></span> - 类 的构造器io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/UploadUtil.DefaultUploadFileNameHandleImpl.html" title="io.geekidea.springbootplus.util中的类">UploadUtil.DefaultUploadFileNameHandleImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/config/ShiroConfig.html#delegatingFilterProxy--">delegatingFilterProxy()</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.config.<a href="io/geekidea/springbootplus/shiro/config/ShiroConfig.html" title="io.geekidea.springbootplus.shiro.config中的类">ShiroConfig</a></dt>
<dd>
<div class="block">ShiroFilter配置</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html#deleteFooBar-java.lang.Long-">deleteFooBar(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.foobar.controller.<a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html" title="io.geekidea.springbootplus.foobar.controller中的类">FooBarController</a></dt>
<dd>
<div class="block">删除FooBar</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/service/FooBarService.html#deleteFooBar-java.lang.Long-">deleteFooBar(Long)</a></span> - 接口 中的方法io.geekidea.springbootplus.foobar.service.<a href="io/geekidea/springbootplus/foobar/service/FooBarService.html" title="io.geekidea.springbootplus.foobar.service中的接口">FooBarService</a></dt>
<dd>
<div class="block">删除</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/service/impl/FooBarServiceImpl.html#deleteFooBar-java.lang.Long-">deleteFooBar(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.foobar.service.impl.<a href="io/geekidea/springbootplus/foobar/service/impl/FooBarServiceImpl.html" title="io.geekidea.springbootplus.foobar.service.impl中的类">FooBarServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/cache/impl/LoginRedisServiceImpl.html#deleteLoginInfo-java.lang.String-java.lang.String-">deleteLoginInfo(String, String)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.cache.impl.<a href="io/geekidea/springbootplus/shiro/cache/impl/LoginRedisServiceImpl.html" title="io.geekidea.springbootplus.shiro.cache.impl中的类">LoginRedisServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/cache/LoginRedisService.html#deleteLoginInfo-java.lang.String-java.lang.String-">deleteLoginInfo(String, String)</a></span> - 接口 中的方法io.geekidea.springbootplus.shiro.cache.<a href="io/geekidea/springbootplus/shiro/cache/LoginRedisService.html" title="io.geekidea.springbootplus.shiro.cache中的接口">LoginRedisService</a></dt>
<dd>
<div class="block">删除对应用户的Redis缓存</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/UploadUtil.html#deleteQuietly-java.lang.String-java.lang.String-">deleteQuietly(String, String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/UploadUtil.html" title="io.geekidea.springbootplus.util中的类">UploadUtil</a></dt>
<dd>
<div class="block">删除删除的文件</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysDepartmentController.html#deleteSysDepartment-java.lang.Long-">deleteSysDepartment(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysDepartmentController.html" title="io.geekidea.springbootplus.system.controller中的类">SysDepartmentController</a></dt>
<dd>
<div class="block">删除部门</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysDepartmentServiceImpl.html#deleteSysDepartment-java.lang.Long-">deleteSysDepartment(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysDepartmentServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysDepartmentServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysDepartmentService.html#deleteSysDepartment-java.lang.Long-">deleteSysDepartment(Long)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysDepartmentService.html" title="io.geekidea.springbootplus.system.service中的接口">SysDepartmentService</a></dt>
<dd>
<div class="block">删除</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysLogController.html#deleteSysLog-io.geekidea.springbootplus.common.param.IdParam-">deleteSysLog(IdParam)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysLogController.html" title="io.geekidea.springbootplus.system.controller中的类">SysLogController</a></dt>
<dd>
<div class="block">删除系统日志</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysPermissionController.html#deleteSysPermission-java.lang.Long-">deleteSysPermission(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysPermissionController.html" title="io.geekidea.springbootplus.system.controller中的类">SysPermissionController</a></dt>
<dd>
<div class="block">删除系统权限</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysPermissionServiceImpl.html#deleteSysPermission-java.lang.Long-">deleteSysPermission(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysPermissionServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysPermissionServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysPermissionService.html#deleteSysPermission-java.lang.Long-">deleteSysPermission(Long)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysPermissionService.html" title="io.geekidea.springbootplus.system.service中的接口">SysPermissionService</a></dt>
<dd>
<div class="block">删除</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysRoleController.html#deleteSysRole-java.lang.Long-">deleteSysRole(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysRoleController.html" title="io.geekidea.springbootplus.system.controller中的类">SysRoleController</a></dt>
<dd>
<div class="block">删除系统角色</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysRoleServiceImpl.html#deleteSysRole-java.lang.Long-">deleteSysRole(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysRoleServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysRoleServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysRoleService.html#deleteSysRole-java.lang.Long-">deleteSysRole(Long)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysRoleService.html" title="io.geekidea.springbootplus.system.service中的接口">SysRoleService</a></dt>
<dd>
<div class="block">删除</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysRolePermissionServiceImpl.html#deleteSysRolePermissionByRoleId-java.lang.Long-">deleteSysRolePermissionByRoleId(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysRolePermissionServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysRolePermissionServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysRolePermissionService.html#deleteSysRolePermissionByRoleId-java.lang.Long-">deleteSysRolePermissionByRoleId(Long)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysRolePermissionService.html" title="io.geekidea.springbootplus.system.service中的接口">SysRolePermissionService</a></dt>
<dd>
<div class="block">根据角色id删除关联的权限关系</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysUserController.html#deleteSysUser-java.lang.Long-">deleteSysUser(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysUserController.html" title="io.geekidea.springbootplus.system.controller中的类">SysUserController</a></dt>
<dd>
<div class="block">删除系统用户</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysUserServiceImpl.html#deleteSysUser-java.lang.Long-">deleteSysUser(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysUserServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysUserServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysUserService.html#deleteSysUser-java.lang.Long-">deleteSysUser(Long)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysUserService.html" title="io.geekidea.springbootplus.system.service中的接口">SysUserService</a></dt>
<dd>
<div class="block">删除</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/cache/impl/LoginRedisServiceImpl.html#deleteUserAllCache-java.lang.String-">deleteUserAllCache(String)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.cache.impl.<a href="io/geekidea/springbootplus/shiro/cache/impl/LoginRedisServiceImpl.html" title="io.geekidea.springbootplus.shiro.cache.impl中的类">LoginRedisServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/cache/LoginRedisService.html#deleteUserAllCache-java.lang.String-">deleteUserAllCache(String)</a></span> - 接口 中的方法io.geekidea.springbootplus.shiro.cache.<a href="io/geekidea/springbootplus/shiro/cache/LoginRedisService.html" title="io.geekidea.springbootplus.shiro.cache中的接口">LoginRedisService</a></dt>
<dd>
<div class="block">删除用户所有登陆缓存</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/xss/XssJacksonDeserializer.html#deserialize-com.fasterxml.jackson.core.JsonParser-com.fasterxml.jackson.databind.DeserializationContext-">deserialize(JsonParser, DeserializationContext)</a></span> - 类 中的方法io.geekidea.springbootplus.common.xss.<a href="io/geekidea/springbootplus/common/xss/XssJacksonDeserializer.html" title="io.geekidea.springbootplus.common.xss中的类">XssJacksonDeserializer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/json/jackson/deserializer/JacksonDateDeserializer.html#deserialize-com.fasterxml.jackson.core.JsonParser-com.fasterxml.jackson.databind.DeserializationContext-">deserialize(JsonParser, DeserializationContext)</a></span> - 类 中的方法io.geekidea.springbootplus.config.json.jackson.deserializer.<a href="io/geekidea/springbootplus/config/json/jackson/deserializer/JacksonDateDeserializer.html" title="io.geekidea.springbootplus.config.json.jackson.deserializer中的类">JacksonDateDeserializer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/json/jackson/deserializer/JacksonDoubleDeserializer.html#deserialize-com.fasterxml.jackson.core.JsonParser-com.fasterxml.jackson.databind.DeserializationContext-">deserialize(JsonParser, DeserializationContext)</a></span> - 类 中的方法io.geekidea.springbootplus.config.json.jackson.deserializer.<a href="io/geekidea/springbootplus/config/json/jackson/deserializer/JacksonDoubleDeserializer.html" title="io.geekidea.springbootplus.config.json.jackson.deserializer中的类">JacksonDoubleDeserializer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/json/jackson/deserializer/JacksonLocalDateTimeDeserializer.html#deserialize-com.fasterxml.jackson.core.JsonParser-com.fasterxml.jackson.databind.DeserializationContext-">deserialize(JsonParser, DeserializationContext)</a></span> - 类 中的方法io.geekidea.springbootplus.config.json.jackson.deserializer.<a href="io/geekidea/springbootplus/config/json/jackson/deserializer/JacksonLocalDateTimeDeserializer.html" title="io.geekidea.springbootplus.config.json.jackson.deserializer中的类">JacksonLocalDateTimeDeserializer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/json/jackson/serializer/JacksonIntegerDeserializer.html#deserialize-com.fasterxml.jackson.core.JsonParser-com.fasterxml.jackson.databind.DeserializationContext-">deserialize(JsonParser, DeserializationContext)</a></span> - 类 中的方法io.geekidea.springbootplus.config.json.jackson.serializer.<a href="io/geekidea/springbootplus/config/json/jackson/serializer/JacksonIntegerDeserializer.html" title="io.geekidea.springbootplus.config.json.jackson.serializer中的类">JacksonIntegerDeserializer</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/xss/XssFilter.html#destroy--">destroy()</a></span> - 类 中的方法io.geekidea.springbootplus.common.xss.<a href="io/geekidea/springbootplus/common/xss/XssFilter.html" title="io.geekidea.springbootplus.common.xss中的类">XssFilter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/filter/RequestPathFilter.html#destroy--">destroy()</a></span> - 类 中的方法io.geekidea.springbootplus.filter.<a href="io/geekidea/springbootplus/filter/RequestPathFilter.html" title="io.geekidea.springbootplus.filter中的类">RequestPathFilter</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/shiro/vo/DeviceInfo.html" title="io.geekidea.springbootplus.shiro.vo中的类"><span class="typeNameLink">DeviceInfo</span></a> - <a href="io/geekidea/springbootplus/shiro/vo/package-summary.html">io.geekidea.springbootplus.shiro.vo</a>中的类</dt>
<dd>
<div class="block">
设备信息
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/vo/DeviceInfo.html#DeviceInfo--">DeviceInfo()</a></span> - 类 的构造器io.geekidea.springbootplus.shiro.vo.<a href="io/geekidea/springbootplus/shiro/vo/DeviceInfo.html" title="io.geekidea.springbootplus.shiro.vo中的类">DeviceInfo</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/aop/LogAop.html#doAround-org.aspectj.lang.ProceedingJoinPoint-">doAround(ProceedingJoinPoint)</a></span> - 类 中的方法io.geekidea.springbootplus.aop.<a href="io/geekidea/springbootplus/aop/LogAop.html" title="io.geekidea.springbootplus.aop中的类">LogAop</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html#doAround-org.aspectj.lang.ProceedingJoinPoint-">doAround(ProceedingJoinPoint)</a></span> - 类 中的方法io.geekidea.springbootplus.core.aop.<a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html" title="io.geekidea.springbootplus.core.aop中的类">AbstractLogAop</a></dt>
<dd>
<div class="block">环绕通知
方法执行前打印请求参数信息
方法执行后打印响应结果信息</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/jwt/JwtCredentialsMatcher.html#doCredentialsMatch-org.apache.shiro.authc.AuthenticationToken-org.apache.shiro.authc.AuthenticationInfo-">doCredentialsMatch(AuthenticationToken, AuthenticationInfo)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.jwt.<a href="io/geekidea/springbootplus/shiro/jwt/JwtCredentialsMatcher.html" title="io.geekidea.springbootplus.shiro.jwt中的类">JwtCredentialsMatcher</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/xss/XssFilter.html#doFilter-javax.servlet.ServletRequest-javax.servlet.ServletResponse-javax.servlet.FilterChain-">doFilter(ServletRequest, ServletResponse, FilterChain)</a></span> - 类 中的方法io.geekidea.springbootplus.common.xss.<a href="io/geekidea/springbootplus/common/xss/XssFilter.html" title="io.geekidea.springbootplus.common.xss中的类">XssFilter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/filter/RequestPathFilter.html#doFilter-javax.servlet.ServletRequest-javax.servlet.ServletResponse-javax.servlet.FilterChain-">doFilter(ServletRequest, ServletResponse, FilterChain)</a></span> - 类 中的方法io.geekidea.springbootplus.filter.<a href="io/geekidea/springbootplus/filter/RequestPathFilter.html" title="io.geekidea.springbootplus.filter中的类">RequestPathFilter</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/jwt/JwtRealm.html#doGetAuthenticationInfo-org.apache.shiro.authc.AuthenticationToken-">doGetAuthenticationInfo(AuthenticationToken)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.jwt.<a href="io/geekidea/springbootplus/shiro/jwt/JwtRealm.html" title="io.geekidea.springbootplus.shiro.jwt中的类">JwtRealm</a></dt>
<dd>
<div class="block">登陆认证</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/jwt/JwtRealm.html#doGetAuthorizationInfo-org.apache.shiro.subject.PrincipalCollection-">doGetAuthorizationInfo(PrincipalCollection)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.jwt.<a href="io/geekidea/springbootplus/shiro/jwt/JwtRealm.html" title="io.geekidea.springbootplus.shiro.jwt中的类">JwtRealm</a></dt>
<dd>
<div class="block">授权认证,设置角色/权限信息</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/resource/controller/DownloadController.html#download-java.lang.String-javax.servlet.http.HttpServletResponse-">download(String, HttpServletResponse)</a></span> - 类 中的方法io.geekidea.springbootplus.resource.controller.<a href="io/geekidea/springbootplus/resource/controller/DownloadController.html" title="io.geekidea.springbootplus.resource.controller中的类">DownloadController</a></dt>
<dd>
<div class="block">下载文件</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DownloadUtil.html#download-java.lang.String-java.lang.String-java.util.List-javax.servlet.http.HttpServletResponse-">download(String, String, List<String>, HttpServletResponse)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DownloadUtil.html" title="io.geekidea.springbootplus.util中的类">DownloadUtil</a></dt>
<dd>
<div class="block">下载文件,使用默认下载处理器</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DownloadUtil.html#download-java.lang.String-java.lang.String-java.util.List-javax.servlet.http.HttpServletResponse-io.geekidea.springbootplus.util.DownloadUtil.DownloadHandler-">download(String, String, List<String>, HttpServletResponse, DownloadUtil.DownloadHandler)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DownloadUtil.html" title="io.geekidea.springbootplus.util中的类">DownloadUtil</a></dt>
<dd>
<div class="block">下载文件,使用自定义下载处理器</div>
</dd>
<dt><a href="io/geekidea/springbootplus/resource/controller/DownloadController.html" title="io.geekidea.springbootplus.resource.controller中的类"><span class="typeNameLink">DownloadController</span></a> - <a href="io/geekidea/springbootplus/resource/controller/package-summary.html">io.geekidea.springbootplus.resource.controller</a>中的类</dt>
<dd>
<div class="block">下载控制器</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/resource/controller/DownloadController.html#DownloadController--">DownloadController()</a></span> - 类 的构造器io.geekidea.springbootplus.resource.controller.<a href="io/geekidea/springbootplus/resource/controller/DownloadController.html" title="io.geekidea.springbootplus.resource.controller中的类">DownloadController</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/config/SpringBootPlusWebMvcConfig.html#downloadInterceptor--">downloadInterceptor()</a></span> - 类 中的方法io.geekidea.springbootplus.core.config.<a href="io/geekidea/springbootplus/core/config/SpringBootPlusWebMvcConfig.html" title="io.geekidea.springbootplus.core.config中的类">SpringBootPlusWebMvcConfig</a></dt>
<dd>
<div class="block">下载拦截器</div>
</dd>
<dt><a href="io/geekidea/springbootplus/resource/interceptor/DownloadInterceptor.html" title="io.geekidea.springbootplus.resource.interceptor中的类"><span class="typeNameLink">DownloadInterceptor</span></a> - <a href="io/geekidea/springbootplus/resource/interceptor/package-summary.html">io.geekidea.springbootplus.resource.interceptor</a>中的类</dt>
<dd>
<div class="block">下载拦截器</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/resource/interceptor/DownloadInterceptor.html#DownloadInterceptor--">DownloadInterceptor()</a></span> - 类 的构造器io.geekidea.springbootplus.resource.interceptor.<a href="io/geekidea/springbootplus/resource/interceptor/DownloadInterceptor.html" title="io.geekidea.springbootplus.resource.interceptor中的类">DownloadInterceptor</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/util/DownloadUtil.html" title="io.geekidea.springbootplus.util中的类"><span class="typeNameLink">DownloadUtil</span></a> - <a href="io/geekidea/springbootplus/util/package-summary.html">io.geekidea.springbootplus.util</a>中的类</dt>
<dd>
<div class="block">文件下载工具类</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DownloadUtil.html#DownloadUtil--">DownloadUtil()</a></span> - 类 的构造器io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DownloadUtil.html" title="io.geekidea.springbootplus.util中的类">DownloadUtil</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/util/DownloadUtil.DefaultDownloadHandler.html" title="io.geekidea.springbootplus.util中的类"><span class="typeNameLink">DownloadUtil.DefaultDownloadHandler</span></a> - <a href="io/geekidea/springbootplus/util/package-summary.html">io.geekidea.springbootplus.util</a>中的类</dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/util/DownloadUtil.DownloadHandler.html" title="io.geekidea.springbootplus.util中的接口"><span class="typeNameLink">DownloadUtil.DownloadHandler</span></a> - <a href="io/geekidea/springbootplus/util/package-summary.html">io.geekidea.springbootplus.util</a>中的接口</dt>
<dd> </dd>
</dl>
<a name="I:E">
<!-- -->
</a>
<h2 class="title">E</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/PasswordUtil.html#encrypt-java.lang.String-java.lang.String-">encrypt(String, String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/PasswordUtil.html" title="io.geekidea.springbootplus.util中的类">PasswordUtil</a></dt>
<dd>
<div class="block">密码加盐,再加密</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/convert/SysDepartmentConvert.html#entityToTreeVo-io.geekidea.springbootplus.system.entity.SysDepartment-">entityToTreeVo(SysDepartment)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.convert.<a href="io/geekidea/springbootplus/system/convert/SysDepartmentConvert.html" title="io.geekidea.springbootplus.system.convert中的接口">SysDepartmentConvert</a></dt>
<dd>
<div class="block">SysDepartment转换成SysDepartmentTreeVo对象</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/convert/SysDepartmentConvertImpl.html#entityToTreeVo-io.geekidea.springbootplus.system.entity.SysDepartment-">entityToTreeVo(SysDepartment)</a></span> - 类 中的方法io.geekidea.springbootplus.system.convert.<a href="io/geekidea/springbootplus/system/convert/SysDepartmentConvertImpl.html" title="io.geekidea.springbootplus.system.convert中的类">SysDepartmentConvertImpl</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/controller/EnumController.html" title="io.geekidea.springbootplus.common.controller中的类"><span class="typeNameLink">EnumController</span></a> - <a href="io/geekidea/springbootplus/common/controller/package-summary.html">io.geekidea.springbootplus.common.controller</a>中的类</dt>
<dd>
<div class="block">
展示实现BaseEnum接口的所有枚举值
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/controller/EnumController.html#EnumController--">EnumController()</a></span> - 类 的构造器io.geekidea.springbootplus.common.controller.<a href="io/geekidea/springbootplus/common/controller/EnumController.html" title="io.geekidea.springbootplus.common.controller中的类">EnumController</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/controller/EnumController.html#enumList--">enumList()</a></span> - 类 中的方法io.geekidea.springbootplus.common.controller.<a href="io/geekidea/springbootplus/common/controller/EnumController.html" title="io.geekidea.springbootplus.common.controller中的类">EnumController</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/constraints/EnumType.html" title="io.geekidea.springbootplus.common.constraints中的注释"><span class="typeNameLink">EnumType</span></a> - <a href="io/geekidea/springbootplus/common/constraints/package-summary.html">io.geekidea.springbootplus.common.constraints</a>中的注释类型</dt>
<dd>
<div class="block">枚举类型注解</div>
</dd>
<dt><a href="io/geekidea/springbootplus/common/constraints/EnumTypeValidator.html" title="io.geekidea.springbootplus.common.constraints中的类"><span class="typeNameLink">EnumTypeValidator</span></a> - <a href="io/geekidea/springbootplus/common/constraints/package-summary.html">io.geekidea.springbootplus.common.constraints</a>中的类</dt>
<dd>
<div class="block">自定义系统内的枚举验证注解实现类</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/constraints/EnumTypeValidator.html#EnumTypeValidator--">EnumTypeValidator()</a></span> - 类 的构造器io.geekidea.springbootplus.common.constraints.<a href="io/geekidea/springbootplus/common/constraints/EnumTypeValidator.html" title="io.geekidea.springbootplus.common.constraints中的类">EnumTypeValidator</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/common/vo/EnumVo.html" title="io.geekidea.springbootplus.common.vo中的类"><span class="typeNameLink">EnumVo</span></a> - <a href="io/geekidea/springbootplus/common/vo/package-summary.html">io.geekidea.springbootplus.common.vo</a>中的类</dt>
<dd>
<div class="block">枚举类型VO</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/vo/EnumVo.html#EnumVo--">EnumVo()</a></span> - 类 的构造器io.geekidea.springbootplus.common.vo.<a href="io/geekidea/springbootplus/common/vo/EnumVo.html" title="io.geekidea.springbootplus.common.vo中的类">EnumVo</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/Assert.html#eq-java.lang.Object-java.lang.Object-com.baomidou.mybatisplus.extension.api.IErrorCode-">eq(Object, Object, IErrorCode)</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/Assert.html" title="io.geekidea.springbootplus.common.api中的类">Assert</a></dt>
<dd>
<div class="block">obj1 eq obj2</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/exception/GlobalExceptionHandler.html#exceptionHandler-java.lang.Exception-">exceptionHandler(Exception)</a></span> - 类 中的方法io.geekidea.springbootplus.common.exception.<a href="io/geekidea/springbootplus/common/exception/GlobalExceptionHandler.html" title="io.geekidea.springbootplus.common.exception中的类">GlobalExceptionHandler</a></dt>
<dd>
<div class="block">默认的异常处理</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/cache/impl/LoginRedisServiceImpl.html#exists-java.lang.String-">exists(String)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.cache.impl.<a href="io/geekidea/springbootplus/shiro/cache/impl/LoginRedisServiceImpl.html" title="io.geekidea.springbootplus.shiro.cache.impl中的类">LoginRedisServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/cache/LoginRedisService.html#exists-java.lang.String-">exists(String)</a></span> - 接口 中的方法io.geekidea.springbootplus.shiro.cache.<a href="io/geekidea/springbootplus/shiro/cache/LoginRedisService.html" title="io.geekidea.springbootplus.shiro.cache中的接口">LoginRedisService</a></dt>
<dd>
<div class="block">判断token在redis中是否存在</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/BaseEnumUtil.html#exists-java.lang.Class-java.lang.Integer-">exists(Class<? extends BaseEnum>, Integer)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/BaseEnumUtil.html" title="io.geekidea.springbootplus.util中的类">BaseEnumUtil</a></dt>
<dd>
<div class="block">判断code在枚举中是否存在</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/json/fastjson/FastJsonMvcConfig.html#extendMessageConverters-java.util.List-">extendMessageConverters(List<HttpMessageConverter<?>>)</a></span> - 类 中的方法io.geekidea.springbootplus.config.json.fastjson.<a href="io/geekidea/springbootplus/config/json/fastjson/FastJsonMvcConfig.html" title="io.geekidea.springbootplus.config.json.fastjson中的类">FastJsonMvcConfig</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/json/jackson/JacksonConfig.html#extendMessageConverters-java.util.List-">extendMessageConverters(List<HttpMessageConverter<?>>)</a></span> - 类 中的方法io.geekidea.springbootplus.config.json.jackson.<a href="io/geekidea/springbootplus/config/json/jackson/JacksonConfig.html" title="io.geekidea.springbootplus.config.json.jackson中的类">JacksonConfig</a></dt>
<dd> </dd>
</dl>
<a name="I:F">
<!-- -->
</a>
<h2 class="title">F</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiController.html#fail-java.lang.String-">fail(String)</a></span> - 类 中的方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiController.html" title="io.geekidea.springbootplus.common.api中的类">ApiController</a></dt>
<dd>
<div class="block">
请求失败
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiController.html#fail-io.geekidea.springbootplus.common.api.ApiCode-">fail(ApiCode)</a></span> - 类 中的方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiController.html" title="io.geekidea.springbootplus.common.api中的类">ApiController</a></dt>
<dd>
<div class="block">
请求失败
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiResult.html#fail-io.geekidea.springbootplus.common.api.ApiCode-">fail(ApiCode)</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiResult.html" title="io.geekidea.springbootplus.common.api中的类">ApiResult</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiResult.html#fail-java.lang.String-">fail(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiResult.html" title="io.geekidea.springbootplus.common.api中的类">ApiResult</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiResult.html#fail-io.geekidea.springbootplus.common.api.ApiCode-java.lang.Object-">fail(ApiCode, Object)</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiResult.html" title="io.geekidea.springbootplus.common.api中的类">ApiResult</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiResult.html#fail-java.lang.String-java.lang.Object-">fail(String, Object)</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiResult.html" title="io.geekidea.springbootplus.common.api中的类">ApiResult</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiResult.html#fail--">fail()</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiResult.html" title="io.geekidea.springbootplus.common.api中的类">ApiResult</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/Assert.html#fail-com.baomidou.mybatisplus.extension.api.IErrorCode-">fail(IErrorCode)</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/Assert.html" title="io.geekidea.springbootplus.common.api中的类">Assert</a></dt>
<dd>
<div class="block">
失败结果
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/Assert.html#fail-boolean-com.baomidou.mybatisplus.extension.api.IErrorCode-">fail(boolean, IErrorCode)</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/Assert.html" title="io.geekidea.springbootplus.common.api中的类">Assert</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/Assert.html#fail-java.lang.String-">fail(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/Assert.html" title="io.geekidea.springbootplus.common.api中的类">Assert</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/Assert.html#fail-boolean-java.lang.String-">fail(boolean, String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/Assert.html" title="io.geekidea.springbootplus.common.api中的类">Assert</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/config/json/fastjson/FastJsonMvcConfig.html" title="io.geekidea.springbootplus.config.json.fastjson中的类"><span class="typeNameLink">FastJsonMvcConfig</span></a> - <a href="io/geekidea/springbootplus/config/json/fastjson/package-summary.html">io.geekidea.springbootplus.config.json.fastjson</a>中的类</dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/config/json/fastjson/FastJsonMvcConfig.html#FastJsonMvcConfig--">FastJsonMvcConfig()</a></span> - 类 的构造器io.geekidea.springbootplus.config.json.fastjson.<a href="io/geekidea/springbootplus/config/json/fastjson/FastJsonMvcConfig.html" title="io.geekidea.springbootplus.config.json.fastjson中的类">FastJsonMvcConfig</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/generator/config/SpringBootPlusMySqlQuery.html#fieldCustom--">fieldCustom()</a></span> - 类 中的方法io.geekidea.springbootplus.generator.config.<a href="io/geekidea/springbootplus/generator/config/SpringBootPlusMySqlQuery.html" title="io.geekidea.springbootplus.generator.config中的类">SpringBootPlusMySqlQuery</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/properties/SpringBootPlusFilterProperties.FilterConfig.html#FilterConfig--">FilterConfig()</a></span> - 类 的构造器io.geekidea.springbootplus.core.properties.<a href="io/geekidea/springbootplus/core/properties/SpringBootPlusFilterProperties.FilterConfig.html" title="io.geekidea.springbootplus.core.properties中的类">SpringBootPlusFilterProperties.FilterConfig</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysDepartmentServiceImpl.html#findChildren-io.geekidea.springbootplus.system.vo.SysDepartmentTreeVo-java.util.List-">findChildren(SysDepartmentTreeVo, List<SysDepartmentTreeVo>)</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysDepartmentServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysDepartmentServiceImpl</a></dt>
<dd>
<div class="block">递归获取树形结果列表</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/BrowserUtil.html#FIREFOX">FIREFOX</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/BrowserUtil.html" title="io.geekidea.springbootplus.util中的类">BrowserUtil</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/foobar/entity/FooBar.html" title="io.geekidea.springbootplus.foobar.entity中的类"><span class="typeNameLink">FooBar</span></a> - <a href="io/geekidea/springbootplus/foobar/entity/package-summary.html">io.geekidea.springbootplus.foobar.entity</a>中的类</dt>
<dd>
<div class="block">
FooBar
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/entity/FooBar.html#FooBar--">FooBar()</a></span> - 类 的构造器io.geekidea.springbootplus.foobar.entity.<a href="io/geekidea/springbootplus/foobar/entity/FooBar.html" title="io.geekidea.springbootplus.foobar.entity中的类">FooBar</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html" title="io.geekidea.springbootplus.foobar.controller中的类"><span class="typeNameLink">FooBarController</span></a> - <a href="io/geekidea/springbootplus/foobar/controller/package-summary.html">io.geekidea.springbootplus.foobar.controller</a>中的类</dt>
<dd>
<div class="block">
FooBar 前端控制器
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html#FooBarController--">FooBarController()</a></span> - 类 的构造器io.geekidea.springbootplus.foobar.controller.<a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html" title="io.geekidea.springbootplus.foobar.controller中的类">FooBarController</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/foobar/mapper/FooBarMapper.html" title="io.geekidea.springbootplus.foobar.mapper中的接口"><span class="typeNameLink">FooBarMapper</span></a> - <a href="io/geekidea/springbootplus/foobar/mapper/package-summary.html">io.geekidea.springbootplus.foobar.mapper</a>中的接口</dt>
<dd>
<div class="block">
FooBar Mapper 接口
</div>
</dd>
<dt><a href="io/geekidea/springbootplus/foobar/param/FooBarQueryParam.html" title="io.geekidea.springbootplus.foobar.param中的类"><span class="typeNameLink">FooBarQueryParam</span></a> - <a href="io/geekidea/springbootplus/foobar/param/package-summary.html">io.geekidea.springbootplus.foobar.param</a>中的类</dt>
<dd>
<div class="block">
FooBar 查询参数对象
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/param/FooBarQueryParam.html#FooBarQueryParam--">FooBarQueryParam()</a></span> - 类 的构造器io.geekidea.springbootplus.foobar.param.<a href="io/geekidea/springbootplus/foobar/param/FooBarQueryParam.html" title="io.geekidea.springbootplus.foobar.param中的类">FooBarQueryParam</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/foobar/vo/FooBarQueryVo.html" title="io.geekidea.springbootplus.foobar.vo中的类"><span class="typeNameLink">FooBarQueryVo</span></a> - <a href="io/geekidea/springbootplus/foobar/vo/package-summary.html">io.geekidea.springbootplus.foobar.vo</a>中的类</dt>
<dd>
<div class="block">
FooBar 查询结果对象
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/vo/FooBarQueryVo.html#FooBarQueryVo--">FooBarQueryVo()</a></span> - 类 的构造器io.geekidea.springbootplus.foobar.vo.<a href="io/geekidea/springbootplus/foobar/vo/FooBarQueryVo.html" title="io.geekidea.springbootplus.foobar.vo中的类">FooBarQueryVo</a></dt>
<dd> </dd>
<dt><a href="io/geekidea/springbootplus/foobar/service/FooBarService.html" title="io.geekidea.springbootplus.foobar.service中的接口"><span class="typeNameLink">FooBarService</span></a> - <a href="io/geekidea/springbootplus/foobar/service/package-summary.html">io.geekidea.springbootplus.foobar.service</a>中的接口</dt>
<dd>
<div class="block">
FooBar 服务类
</div>
</dd>
<dt><a href="io/geekidea/springbootplus/foobar/service/impl/FooBarServiceImpl.html" title="io.geekidea.springbootplus.foobar.service.impl中的类"><span class="typeNameLink">FooBarServiceImpl</span></a> - <a href="io/geekidea/springbootplus/foobar/service/impl/package-summary.html">io.geekidea.springbootplus.foobar.service.impl</a>中的类</dt>
<dd>
<div class="block">
FooBar 服务实现类
</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/service/impl/FooBarServiceImpl.html#FooBarServiceImpl--">FooBarServiceImpl()</a></span> - 类 的构造器io.geekidea.springbootplus.foobar.service.impl.<a href="io/geekidea/springbootplus/foobar/service/impl/FooBarServiceImpl.html" title="io.geekidea.springbootplus.foobar.service.impl中的类">FooBarServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html#formatRequestInfo-java.util.Map-">formatRequestInfo(Map<String, Object>)</a></span> - 类 中的方法io.geekidea.springbootplus.core.aop.<a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html" title="io.geekidea.springbootplus.core.aop中的类">AbstractLogAop</a></dt>
<dd>
<div class="block">格式化请求信息</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html#formatResponseInfo-io.geekidea.springbootplus.common.api.ApiResult-">formatResponseInfo(ApiResult)</a></span> - 类 中的方法io.geekidea.springbootplus.core.aop.<a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html" title="io.geekidea.springbootplus.core.aop中的类">AbstractLogAop</a></dt>
<dd>
<div class="block">格式化响应信息</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DateUtil.html#formatStr_yyyy">formatStr_yyyy</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类">DateUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DateUtil.html#formatStr_yyyy_MM_dd">formatStr_yyyy_MM_dd</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类">DateUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DateUtil.html#formatStr_yyyyMMdd">formatStr_yyyyMMdd</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类">DateUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DateUtil.html#formatStr_yyyyMMddDelimiter">formatStr_yyyyMMddDelimiter</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类">DateUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DateUtil.html#formatStr_yyyyMMddHH">formatStr_yyyyMMddHH</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类">DateUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DateUtil.html#formatStr_yyyyMMddHHmm">formatStr_yyyyMMddHHmm</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类">DateUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DateUtil.html#formatStr_yyyyMMddHHmmss">formatStr_yyyyMMddHHmmss</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类">DateUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DateUtil.html#formatStr_yyyyMMddHHmmssS">formatStr_yyyyMMddHHmmssS</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类">DateUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/DateUtil.html#formatStr_yyyyMMddHHmmssS_">formatStr_yyyyMMddHHmmssS_</a></span> - 类 中的静态变量io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/DateUtil.html" title="io.geekidea.springbootplus.util中的类">DateUtil</a></dt>
<dd> </dd>
</dl>
<a name="I:G">
<!-- -->
</a>
<h2 class="title">G</h2>
<dl>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/Assert.html#ge-java.lang.Integer-java.lang.Integer-com.baomidou.mybatisplus.extension.api.IErrorCode-">ge(Integer, Integer, IErrorCode)</a></span> - 类 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/Assert.html" title="io.geekidea.springbootplus.common.api中的类">Assert</a></dt>
<dd>
<div class="block">num1大于等于num2</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/TokenUtil.html#generateFirstLoginRestPwdToken--">generateFirstLoginRestPwdToken()</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/TokenUtil.html" title="io.geekidea.springbootplus.util中的类">TokenUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/util/SaltUtil.html#generateSalt--">generateSalt()</a></span> - 类 中的静态方法io.geekidea.springbootplus.shiro.util.<a href="io/geekidea/springbootplus/shiro/util/SaltUtil.html" title="io.geekidea.springbootplus.shiro.util中的类">SaltUtil</a></dt>
<dd>
<div class="block">生成32位随机盐</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/util/JwtUtil.html#generateToken-java.lang.String-java.lang.String-java.time.Duration-">generateToken(String, String, Duration)</a></span> - 类 中的静态方法io.geekidea.springbootplus.shiro.util.<a href="io/geekidea/springbootplus/shiro/util/JwtUtil.html" title="io.geekidea.springbootplus.shiro.util中的类">JwtUtil</a></dt>
<dd>
<div class="block">生成JWT Token</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/TokenUtil.html#generateVerificationCodeToken--">generateVerificationCodeToken()</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/TokenUtil.html" title="io.geekidea.springbootplus.util中的类">TokenUtil</a></dt>
<dd>
<div class="block">生成验证码token</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/ClientInfoUtil.html#get-javax.servlet.http.HttpServletRequest-">get(HttpServletRequest)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/ClientInfoUtil.html" title="io.geekidea.springbootplus.util中的类">ClientInfoUtil</a></dt>
<dd>
<div class="block">获取用户客户端信息</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/ClientInfoUtil.html#get-java.lang.String-">get(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/ClientInfoUtil.html" title="io.geekidea.springbootplus.util中的类">ClientInfoUtil</a></dt>
<dd>
<div class="block">获取用户客户端信息</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysDepartmentController.html#getAllDepartmentList--">getAllDepartmentList()</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysDepartmentController.html" title="io.geekidea.springbootplus.system.controller中的类">SysDepartmentController</a></dt>
<dd>
<div class="block">获取所有部门列表</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysDepartmentServiceImpl.html#getAllDepartmentList--">getAllDepartmentList()</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysDepartmentServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysDepartmentServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysDepartmentService.html#getAllDepartmentList--">getAllDepartmentList()</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysDepartmentService.html" title="io.geekidea.springbootplus.system.service中的接口">SysDepartmentService</a></dt>
<dd>
<div class="block">获取所有可用的部门列表</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysDepartmentController.html#getAllDepartmentTree--">getAllDepartmentTree()</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysDepartmentController.html" title="io.geekidea.springbootplus.system.controller中的类">SysDepartmentController</a></dt>
<dd>
<div class="block">获取所有部门的树形列表</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysDepartmentServiceImpl.html#getAllDepartmentTree--">getAllDepartmentTree()</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysDepartmentServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysDepartmentServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysDepartmentService.html#getAllDepartmentTree--">getAllDepartmentTree()</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysDepartmentService.html" title="io.geekidea.springbootplus.system.service中的接口">SysDepartmentService</a></dt>
<dd>
<div class="block">获取所有可用的部门树形列表</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysPermissionController.html#getAllMenuList--">getAllMenuList()</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysPermissionController.html" title="io.geekidea.springbootplus.system.controller中的类">SysPermissionController</a></dt>
<dd>
<div class="block">获取所有菜单列表</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysPermissionServiceImpl.html#getAllMenuList--">getAllMenuList()</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysPermissionServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysPermissionServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysPermissionService.html#getAllMenuList--">getAllMenuList()</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysPermissionService.html" title="io.geekidea.springbootplus.system.service中的接口">SysPermissionService</a></dt>
<dd>
<div class="block">获取所有菜单列表</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/SysPermissionController.html#getAllMenuTree--">getAllMenuTree()</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/SysPermissionController.html" title="io.geekidea.springbootplus.system.controller中的类">SysPermissionController</a></dt>
<dd>
<div class="block">获取获取菜单树形列表</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/SysPermissionServiceImpl.html#getAllMenuTree--">getAllMenuTree()</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/SysPermissionServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">SysPermissionServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/SysPermissionService.html#getAllMenuTree--">getAllMenuTree()</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/SysPermissionService.html" title="io.geekidea.springbootplus.system.service中的接口">SysPermissionService</a></dt>
<dd>
<div class="block">获取获取菜单树形列表</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/AnsiUtil.html#getAnsi-org.fusesource.jansi.Ansi.Color-java.lang.String-">getAnsi(Ansi.Color, String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/AnsiUtil.html" title="io.geekidea.springbootplus.util中的类">AnsiUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/AnsiUtil.html#getAnsi-org.fusesource.jansi.Ansi.Color-java.lang.String-boolean-">getAnsi(Ansi.Color, String, boolean)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/AnsiUtil.html" title="io.geekidea.springbootplus.util中的类">AnsiUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiCode.html#getApiCode-int-">getApiCode(int)</a></span> - 枚举 中的静态方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiCode.html" title="io.geekidea.springbootplus.common.api中的枚举">ApiCode</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/SpringContextUtil.html#getApplicationContext--">getApplicationContext()</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/SpringContextUtil.html" title="io.geekidea.springbootplus.util中的类">SpringContextUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/SpringContextUtil.html#getBean-java.lang.String-">getBean(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/SpringContextUtil.html" title="io.geekidea.springbootplus.util中的类">SpringContextUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/SpringContextUtil.html#getBean-java.lang.Class-">getBean(Class<T>)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/SpringContextUtil.html" title="io.geekidea.springbootplus.util中的类">SpringContextUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/SpringContextUtil.html#getBean-java.lang.String-java.lang.Class-">getBean(String, Class<T>)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/SpringContextUtil.html" title="io.geekidea.springbootplus.util中的类">SpringContextUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/api/ApiCode.html#getCode--">getCode()</a></span> - 枚举 中的方法io.geekidea.springbootplus.common.api.<a href="io/geekidea/springbootplus/common/api/ApiCode.html" title="io.geekidea.springbootplus.common.api中的枚举">ApiCode</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/enums/BaseEnum.html#getCode--">getCode()</a></span> - 接口 中的方法io.geekidea.springbootplus.common.enums.<a href="io/geekidea/springbootplus/common/enums/BaseEnum.html" title="io.geekidea.springbootplus.common.enums中的接口">BaseEnum</a></dt>
<dd>
<div class="block">获取枚举索引</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/enums/MenuLevelEnum.html#getCode--">getCode()</a></span> - 枚举 中的方法io.geekidea.springbootplus.enums.<a href="io/geekidea/springbootplus/enums/MenuLevelEnum.html" title="io.geekidea.springbootplus.enums中的枚举">MenuLevelEnum</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/enums/StateEnum.html#getCode--">getCode()</a></span> - 枚举 中的方法io.geekidea.springbootplus.enums.<a href="io/geekidea/springbootplus/enums/StateEnum.html" title="io.geekidea.springbootplus.enums中的枚举">StateEnum</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/VerificationCodeController.html#getCode-javax.servlet.http.HttpServletResponse-">getCode(HttpServletResponse)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/VerificationCodeController.html" title="io.geekidea.springbootplus.system.controller中的类">VerificationCodeController</a></dt>
<dd>
<div class="block">获取图片Base64验证码</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/BaseEnumUtil.html#getCodeSet-java.lang.Class-">getCodeSet(Class<? extends BaseEnum>)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/BaseEnumUtil.html" title="io.geekidea.springbootplus.util中的类">BaseEnumUtil</a></dt>
<dd>
<div class="block">通过类型获取枚举code集合</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/ContentTypeUtil.html#getContentType-java.io.File-">getContentType(File)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/ContentTypeUtil.html" title="io.geekidea.springbootplus.util中的类">ContentTypeUtil</a></dt>
<dd>
<div class="block">获取文件内容类型</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/jwt/JwtToken.html#getCredentials--">getCredentials()</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.jwt.<a href="io/geekidea/springbootplus/shiro/jwt/JwtToken.html" title="io.geekidea.springbootplus.shiro.jwt中的类">JwtToken</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/BrowserUtil.html#getCurrent-javax.servlet.http.HttpServletRequest-">getCurrent(HttpServletRequest)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/BrowserUtil.html" title="io.geekidea.springbootplus.util中的类">BrowserUtil</a></dt>
<dd>
<div class="block">获取当前浏览器名称</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/enums/BaseEnum.html#getDesc--">getDesc()</a></span> - 接口 中的方法io.geekidea.springbootplus.common.enums.<a href="io/geekidea/springbootplus/common/enums/BaseEnum.html" title="io.geekidea.springbootplus.common.enums中的接口">BaseEnum</a></dt>
<dd>
<div class="block">获取描述</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/enums/MenuLevelEnum.html#getDesc--">getDesc()</a></span> - 枚举 中的方法io.geekidea.springbootplus.enums.<a href="io/geekidea/springbootplus/enums/MenuLevelEnum.html" title="io.geekidea.springbootplus.enums中的枚举">MenuLevelEnum</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/enums/StateEnum.html#getDesc--">getDesc()</a></span> - 枚举 中的方法io.geekidea.springbootplus.enums.<a href="io/geekidea/springbootplus/enums/StateEnum.html" title="io.geekidea.springbootplus.enums中的枚举">StateEnum</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/BaseEnumUtil.html#getDesc-java.lang.Class-java.lang.Integer-">getDesc(Class<? extends BaseEnum>, Integer)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/BaseEnumUtil.html" title="io.geekidea.springbootplus.util中的类">BaseEnumUtil</a></dt>
<dd>
<div class="block">通过code获取name</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/BaseEnumUtil.html#getDescList-java.lang.Class-">getDescList(Class<? extends BaseEnum>)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/BaseEnumUtil.html" title="io.geekidea.springbootplus.util中的类">BaseEnumUtil</a></dt>
<dd>
<div class="block">通过类型获取枚举desc集合</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/ClientInfoUtil.html#getDeviceInfo-java.lang.String-">getDeviceInfo(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/ClientInfoUtil.html" title="io.geekidea.springbootplus.util中的类">ClientInfoUtil</a></dt>
<dd>
<div class="block">获取移动端用户设备的名称和机型</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/BaseEnumUtil.html#getEnumClassMap--">getEnumClassMap()</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/BaseEnumUtil.html" title="io.geekidea.springbootplus.util中的类">BaseEnumUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/BaseEnumUtil.html#getEnumMap--">getEnumMap()</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/BaseEnumUtil.html" title="io.geekidea.springbootplus.util中的类">BaseEnumUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/exception/GlobalErrorController.html#getErrorPath--">getErrorPath()</a></span> - 类 中的方法io.geekidea.springbootplus.common.exception.<a href="io/geekidea/springbootplus/common/exception/GlobalErrorController.html" title="io.geekidea.springbootplus.common.exception中的类">GlobalErrorController</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/util/JwtUtil.html#getExpireDate-java.lang.String-">getExpireDate(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.shiro.util.<a href="io/geekidea/springbootplus/shiro/util/JwtUtil.html" title="io.geekidea.springbootplus.shiro.util中的类">JwtUtil</a></dt>
<dd>
<div class="block">获取过期时间</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html#getFooBar-java.lang.Long-">getFooBar(Long)</a></span> - 类 中的方法io.geekidea.springbootplus.foobar.controller.<a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html" title="io.geekidea.springbootplus.foobar.controller中的类">FooBarController</a></dt>
<dd>
<div class="block">获取FooBar</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/mapper/FooBarMapper.html#getFooBarById-java.io.Serializable-">getFooBarById(Serializable)</a></span> - 接口 中的方法io.geekidea.springbootplus.foobar.mapper.<a href="io/geekidea/springbootplus/foobar/mapper/FooBarMapper.html" title="io.geekidea.springbootplus.foobar.mapper中的接口">FooBarMapper</a></dt>
<dd>
<div class="block">根据ID获取查询对象</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/service/FooBarService.html#getFooBarById-java.io.Serializable-">getFooBarById(Serializable)</a></span> - 接口 中的方法io.geekidea.springbootplus.foobar.service.<a href="io/geekidea/springbootplus/foobar/service/FooBarService.html" title="io.geekidea.springbootplus.foobar.service中的接口">FooBarService</a></dt>
<dd>
<div class="block">根据ID获取查询对象</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/service/impl/FooBarServiceImpl.html#getFooBarById-java.io.Serializable-">getFooBarById(Serializable)</a></span> - 类 中的方法io.geekidea.springbootplus.foobar.service.impl.<a href="io/geekidea/springbootplus/foobar/service/impl/FooBarServiceImpl.html" title="io.geekidea.springbootplus.foobar.service.impl中的类">FooBarServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html#getFooBarPageList-io.geekidea.springbootplus.foobar.param.FooBarQueryParam-">getFooBarPageList(FooBarQueryParam)</a></span> - 类 中的方法io.geekidea.springbootplus.foobar.controller.<a href="io/geekidea/springbootplus/foobar/controller/FooBarController.html" title="io.geekidea.springbootplus.foobar.controller中的类">FooBarController</a></dt>
<dd>
<div class="block">FooBar分页列表</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/mapper/FooBarMapper.html#getFooBarPageList-com.baomidou.mybatisplus.extension.plugins.pagination.Page-io.geekidea.springbootplus.foobar.param.FooBarQueryParam-">getFooBarPageList(Page, FooBarQueryParam)</a></span> - 接口 中的方法io.geekidea.springbootplus.foobar.mapper.<a href="io/geekidea/springbootplus/foobar/mapper/FooBarMapper.html" title="io.geekidea.springbootplus.foobar.mapper中的接口">FooBarMapper</a></dt>
<dd>
<div class="block">获取分页对象</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/service/FooBarService.html#getFooBarPageList-io.geekidea.springbootplus.foobar.param.FooBarQueryParam-">getFooBarPageList(FooBarQueryParam)</a></span> - 接口 中的方法io.geekidea.springbootplus.foobar.service.<a href="io/geekidea/springbootplus/foobar/service/FooBarService.html" title="io.geekidea.springbootplus.foobar.service中的接口">FooBarService</a></dt>
<dd>
<div class="block">获取分页对象</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/foobar/service/impl/FooBarServiceImpl.html#getFooBarPageList-io.geekidea.springbootplus.foobar.param.FooBarQueryParam-">getFooBarPageList(FooBarQueryParam)</a></span> - 类 中的方法io.geekidea.springbootplus.foobar.service.impl.<a href="io/geekidea/springbootplus/foobar/service/impl/FooBarServiceImpl.html" title="io.geekidea.springbootplus.foobar.service.impl中的类">FooBarServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/common/vo/CommonIdName.html#getId--">getId()</a></span> - 类 中的方法io.geekidea.springbootplus.common.vo.<a href="io/geekidea/springbootplus/common/vo/CommonIdName.html" title="io.geekidea.springbootplus.common.vo中的类">CommonIdName</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/resource/controller/ResourceController.html#getImage-java.lang.String-javax.servlet.http.HttpServletResponse-">getImage(String, HttpServletResponse)</a></span> - 类 中的方法io.geekidea.springbootplus.resource.controller.<a href="io/geekidea/springbootplus/resource/controller/ResourceController.html" title="io.geekidea.springbootplus.resource.controller中的类">ResourceController</a></dt>
<dd>
<div class="block">访问图片</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/controller/VerificationCodeController.html#getImage-javax.servlet.http.HttpServletResponse-">getImage(HttpServletResponse)</a></span> - 类 中的方法io.geekidea.springbootplus.system.controller.<a href="io/geekidea/springbootplus/system/controller/VerificationCodeController.html" title="io.geekidea.springbootplus.system.controller中的类">VerificationCodeController</a></dt>
<dd>
<div class="block">获取验证码</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/VerificationCode.html#getImage--">getImage()</a></span> - 类 中的方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/VerificationCode.html" title="io.geekidea.springbootplus.util中的类">VerificationCode</a></dt>
<dd>
<div class="block">获取验证码图片的方法</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/mapper/IpMapper.html#getIpById-java.io.Serializable-">getIpById(Serializable)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.mapper.<a href="io/geekidea/springbootplus/system/mapper/IpMapper.html" title="io.geekidea.springbootplus.system.mapper中的接口">IpMapper</a></dt>
<dd>
<div class="block">根据ID获取查询对象</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/IpServiceImpl.html#getIpById-java.io.Serializable-">getIpById(Serializable)</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/IpServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">IpServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/IpService.html#getIpById-java.io.Serializable-">getIpById(Serializable)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/IpService.html" title="io.geekidea.springbootplus.system.service中的接口">IpService</a></dt>
<dd>
<div class="block">根据ID获取查询对象</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/mapper/IpMapper.html#getIpPageList-com.baomidou.mybatisplus.extension.plugins.pagination.Page-io.geekidea.springbootplus.system.param.IpQueryParam-">getIpPageList(Page, IpQueryParam)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.mapper.<a href="io/geekidea/springbootplus/system/mapper/IpMapper.html" title="io.geekidea.springbootplus.system.mapper中的接口">IpMapper</a></dt>
<dd>
<div class="block">获取分页对象</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/impl/IpServiceImpl.html#getIpPageList-io.geekidea.springbootplus.system.param.IpQueryParam-">getIpPageList(IpQueryParam)</a></span> - 类 中的方法io.geekidea.springbootplus.system.service.impl.<a href="io/geekidea/springbootplus/system/service/impl/IpServiceImpl.html" title="io.geekidea.springbootplus.system.service.impl中的类">IpServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/system/service/IpService.html#getIpPageList-io.geekidea.springbootplus.system.param.IpQueryParam-">getIpPageList(IpQueryParam)</a></span> - 接口 中的方法io.geekidea.springbootplus.system.service.<a href="io/geekidea/springbootplus/system/service/IpService.html" title="io.geekidea.springbootplus.system.service中的接口">IpService</a></dt>
<dd>
<div class="block">获取分页对象</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/util/JwtUtil.html#getIssuedAt-java.lang.String-">getIssuedAt(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.shiro.util.<a href="io/geekidea/springbootplus/shiro/util/JwtUtil.html" title="io.geekidea.springbootplus.shiro.util中的类">JwtUtil</a></dt>
<dd>
<div class="block">获取创建时间</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html#getJsonForParamMap-java.util.Map-">getJsonForParamMap(Map<String, String[]>)</a></span> - 类 中的方法io.geekidea.springbootplus.core.aop.<a href="io/geekidea/springbootplus/core/aop/AbstractLogAop.html" title="io.geekidea.springbootplus.core.aop中的类">AbstractLogAop</a></dt>
<dd>
<div class="block">获取参数Map的JSON字符串</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/util/JwtUtil.html#getJwtInfo-java.lang.String-">getJwtInfo(String)</a></span> - 类 中的静态方法io.geekidea.springbootplus.shiro.util.<a href="io/geekidea/springbootplus/shiro/util/JwtUtil.html" title="io.geekidea.springbootplus.shiro.util中的类">JwtUtil</a></dt>
<dd>
<div class="block">解析token,获取token数据</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/util/IpUtil.html#getLocalhostIp--">getLocalhostIp()</a></span> - 类 中的静态方法io.geekidea.springbootplus.util.<a href="io/geekidea/springbootplus/util/IpUtil.html" title="io.geekidea.springbootplus.util中的类">IpUtil</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/cache/impl/LoginRedisServiceImpl.html#getLoginSysUserRedisVo-java.lang.String-">getLoginSysUserRedisVo(String)</a></span> - 类 中的方法io.geekidea.springbootplus.shiro.cache.impl.<a href="io/geekidea/springbootplus/shiro/cache/impl/LoginRedisServiceImpl.html" title="io.geekidea.springbootplus.shiro.cache.impl中的类">LoginRedisServiceImpl</a></dt>
<dd> </dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/cache/LoginRedisService.html#getLoginSysUserRedisVo-java.lang.String-">getLoginSysUserRedisVo(String)</a></span> - 接口 中的方法io.geekidea.springbootplus.shiro.cache.<a href="io/geekidea/springbootplus/shiro/cache/LoginRedisService.html" title="io.geekidea.springbootplus.shiro.cache中的接口">LoginRedisService</a></dt>
<dd>
<div class="block">通过用户名,从缓存中获取登陆用户LoginSysUserRedisVo</div>
</dd>
<dt><span class="memberNameLink"><a href="io/geekidea/springbootplus/shiro/util/LoginUtil.html#getLoginSysUserRedisVo--">getLoginSysUserRedisVo()</a></span> - 类 中的静态方法io.geekidea.springbootplus.shiro.util.<a href="io/geekidea/springbootplus/shiro/util/LoginUtil.html" title="io.geekidea.springbootplus.shiro.util中的类">LoginUtil</a></dt>