@k3000/s1 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,1492 +0,0 @@
1
-
2
- interface SysDept {
3
-
4
- /**
5
- * 部门id
6
- */
7
- deptId: Number
8
- /**
9
- * 父部门id
10
- */
11
- parentId: Number
12
- /**
13
- * 祖级列表
14
- */
15
- ancestors: String
16
- /**
17
- * 部门名称
18
- */
19
- deptName: String
20
- /**
21
- * 显示顺序
22
- */
23
- orderNum: Number
24
- /**
25
- * 负责人
26
- */
27
- leader: String
28
- /**
29
- * 联系电话
30
- */
31
- phone: String
32
- /**
33
- * 邮箱
34
- */
35
- email: String
36
- /**
37
- * 部门状态(0正常 1停用)
38
- */
39
- status: String
40
- /**
41
- * 删除标志(0代表存在 2代表删除)
42
- */
43
- delFlag: String
44
- /**
45
- * 创建者
46
- */
47
- createBy: String
48
- /**
49
- * 创建时间
50
- */
51
- createTime: Number | Date
52
- /**
53
- * 更新者
54
- */
55
- updateBy: String
56
- /**
57
- * 更新时间
58
- */
59
- updateTime: Number | Date
60
- }
61
-
62
- interface SysDeptSet extends Array<SysDept> {
63
-
64
- /**
65
- * 分页查询
66
- */
67
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysDept>
68
- /**
69
- * 移除数据
70
- */
71
- remove(...items: Array<SysDept>): void
72
- /**
73
- * 联合查询,类似LEFT JOIN
74
- */
75
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
76
- /**
77
- * 联合查询,类似INNER JOIN
78
- */
79
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
80
- }
81
-
82
- interface SysUser {
83
-
84
- /**
85
- * 用户ID
86
- */
87
- userId: Number
88
- /**
89
- * 部门ID
90
- */
91
- deptId: Number
92
- /**
93
- * 用户账号
94
- */
95
- userName: String
96
- /**
97
- * 用户昵称
98
- */
99
- nickName: String
100
- /**
101
- * 用户类型(00系统用户)
102
- */
103
- userType: String
104
- /**
105
- * 用户邮箱
106
- */
107
- email: String
108
- /**
109
- * 手机号码
110
- */
111
- phonenumber: String
112
- /**
113
- * 用户性别(0男 1女 2未知)
114
- */
115
- sex: String
116
- /**
117
- * 头像地址
118
- */
119
- avatar: String
120
- /**
121
- * 密码
122
- */
123
- password: String
124
- /**
125
- * 帐号状态(0正常 1停用)
126
- */
127
- status: String
128
- /**
129
- * 删除标志(0代表存在 2代表删除)
130
- */
131
- delFlag: String
132
- /**
133
- * 最后登录IP
134
- */
135
- loginIp: String
136
- /**
137
- * 最后登录时间
138
- */
139
- loginDate: Number | Date
140
- /**
141
- * 创建者
142
- */
143
- createBy: String
144
- /**
145
- * 创建时间
146
- */
147
- createTime: Number | Date
148
- /**
149
- * 更新者
150
- */
151
- updateBy: String
152
- /**
153
- * 更新时间
154
- */
155
- updateTime: Number | Date
156
- /**
157
- * 备注
158
- */
159
- remark: String
160
- /**
161
- * jwt id
162
- */
163
- jti: Number
164
- }
165
-
166
- interface SysUserSet extends Array<SysUser> {
167
-
168
- /**
169
- * 分页查询
170
- */
171
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysUser>
172
- /**
173
- * 移除数据
174
- */
175
- remove(...items: Array<SysUser>): void
176
- /**
177
- * 联合查询,类似LEFT JOIN
178
- */
179
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
180
- /**
181
- * 联合查询,类似INNER JOIN
182
- */
183
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
184
- }
185
-
186
- interface SysPost {
187
-
188
- /**
189
- * 岗位ID
190
- */
191
- postId: Number
192
- /**
193
- * 岗位编码
194
- */
195
- postCode: String
196
- /**
197
- * 岗位名称
198
- */
199
- postName: String
200
- /**
201
- * 显示顺序
202
- */
203
- postSort: Number
204
- /**
205
- * 状态(0正常 1停用)
206
- */
207
- status: String
208
- /**
209
- * 创建者
210
- */
211
- createBy: String
212
- /**
213
- * 创建时间
214
- */
215
- createTime: Number | Date
216
- /**
217
- * 更新者
218
- */
219
- updateBy: String
220
- /**
221
- * 更新时间
222
- */
223
- updateTime: Number | Date
224
- /**
225
- * 备注
226
- */
227
- remark: String
228
- }
229
-
230
- interface SysPostSet extends Array<SysPost> {
231
-
232
- /**
233
- * 分页查询
234
- */
235
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysPost>
236
- /**
237
- * 移除数据
238
- */
239
- remove(...items: Array<SysPost>): void
240
- /**
241
- * 联合查询,类似LEFT JOIN
242
- */
243
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
244
- /**
245
- * 联合查询,类似INNER JOIN
246
- */
247
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
248
- }
249
-
250
- interface SysRole {
251
-
252
- /**
253
- * 角色ID
254
- */
255
- roleId: Number
256
- /**
257
- * 角色名称
258
- */
259
- roleName: String
260
- /**
261
- * 角色权限字符串
262
- */
263
- roleKey: String
264
- /**
265
- * 显示顺序
266
- */
267
- roleSort: Number
268
- /**
269
- * 数据范围(1:全部数据权限 2:自定数据权限 3:本部门数据权限 4:本部门及以下数据权限)
270
- */
271
- dataScope: String
272
- /**
273
- * 菜单树选择项是否关联显示
274
- */
275
- menuCheckStrictly: Number
276
- /**
277
- * 部门树选择项是否关联显示
278
- */
279
- deptCheckStrictly: Number
280
- /**
281
- * 角色状态(0正常 1停用)
282
- */
283
- status: String
284
- /**
285
- * 删除标志(0代表存在 2代表删除)
286
- */
287
- delFlag: String
288
- /**
289
- * 创建者
290
- */
291
- createBy: String
292
- /**
293
- * 创建时间
294
- */
295
- createTime: Number | Date
296
- /**
297
- * 更新者
298
- */
299
- updateBy: String
300
- /**
301
- * 更新时间
302
- */
303
- updateTime: Number | Date
304
- /**
305
- * 备注
306
- */
307
- remark: String
308
- }
309
-
310
- interface SysRoleSet extends Array<SysRole> {
311
-
312
- /**
313
- * 分页查询
314
- */
315
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysRole>
316
- /**
317
- * 移除数据
318
- */
319
- remove(...items: Array<SysRole>): void
320
- /**
321
- * 联合查询,类似LEFT JOIN
322
- */
323
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
324
- /**
325
- * 联合查询,类似INNER JOIN
326
- */
327
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
328
- }
329
-
330
- interface SysMenu {
331
-
332
- /**
333
- * 菜单ID
334
- */
335
- menuId: Number
336
- /**
337
- * 菜单名称
338
- */
339
- menuName: String
340
- /**
341
- * 父菜单ID
342
- */
343
- parentId: Number
344
- /**
345
- * 显示顺序
346
- */
347
- orderNum: Number
348
- /**
349
- * 路由地址
350
- */
351
- path: String
352
- /**
353
- * 组件路径
354
- */
355
- component: String
356
- /**
357
- * 路由参数
358
- */
359
- query: String
360
- /**
361
- * 是否为外链(0是 1否)
362
- */
363
- isFrame: Number
364
- /**
365
- * 是否缓存(0缓存 1不缓存)
366
- */
367
- isCache: Number
368
- /**
369
- * 菜单类型(M目录 C菜单 F按钮)
370
- */
371
- menuType: String
372
- /**
373
- * 菜单状态(0显示 1隐藏)
374
- */
375
- visible: String
376
- /**
377
- * 菜单状态(0正常 1停用)
378
- */
379
- status: String
380
- /**
381
- * 权限标识
382
- */
383
- perms: String
384
- /**
385
- * 菜单图标
386
- */
387
- icon: String
388
- /**
389
- * 创建者
390
- */
391
- createBy: String
392
- /**
393
- * 创建时间
394
- */
395
- createTime: Number | Date
396
- /**
397
- * 更新者
398
- */
399
- updateBy: String
400
- /**
401
- * 更新时间
402
- */
403
- updateTime: Number | Date
404
- /**
405
- * 备注
406
- */
407
- remark: String
408
- }
409
-
410
- interface SysMenuSet extends Array<SysMenu> {
411
-
412
- /**
413
- * 分页查询
414
- */
415
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysMenu>
416
- /**
417
- * 移除数据
418
- */
419
- remove(...items: Array<SysMenu>): void
420
- /**
421
- * 联合查询,类似LEFT JOIN
422
- */
423
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
424
- /**
425
- * 联合查询,类似INNER JOIN
426
- */
427
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
428
- }
429
-
430
- interface SysUserRole {
431
-
432
- /**
433
- * 用户ID
434
- */
435
- userId: Number
436
- /**
437
- * 角色ID
438
- */
439
- roleId: Number
440
- }
441
-
442
- interface SysUserRoleSet extends Array<SysUserRole> {
443
-
444
- /**
445
- * 分页查询
446
- */
447
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysUserRole>
448
- /**
449
- * 移除数据
450
- */
451
- remove(...items: Array<SysUserRole>): void
452
- /**
453
- * 联合查询,类似LEFT JOIN
454
- */
455
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
456
- /**
457
- * 联合查询,类似INNER JOIN
458
- */
459
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
460
- }
461
-
462
- interface SysRoleMenu {
463
-
464
- /**
465
- * 角色ID
466
- */
467
- roleId: Number
468
- /**
469
- * 菜单ID
470
- */
471
- menuId: Number
472
- }
473
-
474
- interface SysRoleMenuSet extends Array<SysRoleMenu> {
475
-
476
- /**
477
- * 分页查询
478
- */
479
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysRoleMenu>
480
- /**
481
- * 移除数据
482
- */
483
- remove(...items: Array<SysRoleMenu>): void
484
- /**
485
- * 联合查询,类似LEFT JOIN
486
- */
487
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
488
- /**
489
- * 联合查询,类似INNER JOIN
490
- */
491
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
492
- }
493
-
494
- interface SysRoleDept {
495
-
496
- /**
497
- * 角色ID
498
- */
499
- roleId: Number
500
- /**
501
- * 部门ID
502
- */
503
- deptId: Number
504
- }
505
-
506
- interface SysRoleDeptSet extends Array<SysRoleDept> {
507
-
508
- /**
509
- * 分页查询
510
- */
511
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysRoleDept>
512
- /**
513
- * 移除数据
514
- */
515
- remove(...items: Array<SysRoleDept>): void
516
- /**
517
- * 联合查询,类似LEFT JOIN
518
- */
519
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
520
- /**
521
- * 联合查询,类似INNER JOIN
522
- */
523
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
524
- }
525
-
526
- interface SysUserPost {
527
-
528
- /**
529
- * 用户ID
530
- */
531
- userId: Number
532
- /**
533
- * 岗位ID
534
- */
535
- postId: Number
536
- }
537
-
538
- interface SysUserPostSet extends Array<SysUserPost> {
539
-
540
- /**
541
- * 分页查询
542
- */
543
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysUserPost>
544
- /**
545
- * 移除数据
546
- */
547
- remove(...items: Array<SysUserPost>): void
548
- /**
549
- * 联合查询,类似LEFT JOIN
550
- */
551
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
552
- /**
553
- * 联合查询,类似INNER JOIN
554
- */
555
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
556
- }
557
-
558
- interface SysOperLog {
559
-
560
- /**
561
- * 日志主键
562
- */
563
- operId: Number
564
- /**
565
- * 模块标题
566
- */
567
- title: String
568
- /**
569
- * 业务类型(0其它 1新增 2修改 3删除)
570
- */
571
- businessType: Number
572
- /**
573
- * 方法名称
574
- */
575
- method: String
576
- /**
577
- * 请求方式
578
- */
579
- requestMethod: String
580
- /**
581
- * 操作类别(0其它 1后台用户 2手机端用户)
582
- */
583
- operatorType: Number
584
- /**
585
- * 操作人员
586
- */
587
- operName: String
588
- /**
589
- * 部门名称
590
- */
591
- deptName: String
592
- /**
593
- * 请求URL
594
- */
595
- operUrl: String
596
- /**
597
- * 主机地址
598
- */
599
- operIp: String
600
- /**
601
- * 操作地点
602
- */
603
- operLocation: String
604
- /**
605
- * 请求参数
606
- */
607
- operParam: String
608
- /**
609
- * 返回参数
610
- */
611
- jsonResult: String
612
- /**
613
- * 操作状态(0正常 1异常)
614
- */
615
- status: Number
616
- /**
617
- * 错误消息
618
- */
619
- errorMsg: String
620
- /**
621
- * 操作时间
622
- */
623
- operTime: Number | Date
624
- /**
625
- * 消耗时间
626
- */
627
- costTime: Number
628
- }
629
-
630
- interface SysOperLogSet extends Array<SysOperLog> {
631
-
632
- /**
633
- * 分页查询
634
- */
635
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysOperLog>
636
- /**
637
- * 移除数据
638
- */
639
- remove(...items: Array<SysOperLog>): void
640
- /**
641
- * 联合查询,类似LEFT JOIN
642
- */
643
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
644
- /**
645
- * 联合查询,类似INNER JOIN
646
- */
647
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
648
- }
649
-
650
- interface SysDictType {
651
-
652
- /**
653
- * 字典主键
654
- */
655
- dictId: Number
656
- /**
657
- * 字典名称
658
- */
659
- dictName: String
660
- /**
661
- * 字典类型
662
- */
663
- dictType: String
664
- /**
665
- * 状态(0正常 1停用)
666
- */
667
- status: String
668
- /**
669
- * 创建者
670
- */
671
- createBy: String
672
- /**
673
- * 创建时间
674
- */
675
- createTime: Number | Date
676
- /**
677
- * 更新者
678
- */
679
- updateBy: String
680
- /**
681
- * 更新时间
682
- */
683
- updateTime: Number | Date
684
- /**
685
- * 备注
686
- */
687
- remark: String
688
- }
689
-
690
- interface SysDictTypeSet extends Array<SysDictType> {
691
-
692
- /**
693
- * 分页查询
694
- */
695
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysDictType>
696
- /**
697
- * 移除数据
698
- */
699
- remove(...items: Array<SysDictType>): void
700
- /**
701
- * 联合查询,类似LEFT JOIN
702
- */
703
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
704
- /**
705
- * 联合查询,类似INNER JOIN
706
- */
707
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
708
- }
709
-
710
- interface SysDictData {
711
-
712
- /**
713
- * 字典编码
714
- */
715
- dictCode: Number
716
- /**
717
- * 字典排序
718
- */
719
- dictSort: Number
720
- /**
721
- * 字典标签
722
- */
723
- dictLabel: String
724
- /**
725
- * 字典键值
726
- */
727
- dictValue: String
728
- /**
729
- * 字典类型
730
- */
731
- dictType: String
732
- /**
733
- * 样式属性(其他样式扩展)
734
- */
735
- cssClass: String
736
- /**
737
- * 表格回显样式
738
- */
739
- listClass: String
740
- /**
741
- * 是否默认(Y是 N否)
742
- */
743
- isDefault: String
744
- /**
745
- * 状态(0正常 1停用)
746
- */
747
- status: String
748
- /**
749
- * 创建者
750
- */
751
- createBy: String
752
- /**
753
- * 创建时间
754
- */
755
- createTime: Number | Date
756
- /**
757
- * 更新者
758
- */
759
- updateBy: String
760
- /**
761
- * 更新时间
762
- */
763
- updateTime: Number | Date
764
- /**
765
- * 备注
766
- */
767
- remark: String
768
- }
769
-
770
- interface SysDictDataSet extends Array<SysDictData> {
771
-
772
- /**
773
- * 分页查询
774
- */
775
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysDictData>
776
- /**
777
- * 移除数据
778
- */
779
- remove(...items: Array<SysDictData>): void
780
- /**
781
- * 联合查询,类似LEFT JOIN
782
- */
783
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
784
- /**
785
- * 联合查询,类似INNER JOIN
786
- */
787
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
788
- }
789
-
790
- interface SysConfig {
791
-
792
- /**
793
- * 参数主键
794
- */
795
- configId: Number
796
- /**
797
- * 参数名称
798
- */
799
- configName: String
800
- /**
801
- * 参数键名
802
- */
803
- configKey: String
804
- /**
805
- * 参数键值
806
- */
807
- configValue: String
808
- /**
809
- * 系统内置(Y是 N否)
810
- */
811
- configType: String
812
- /**
813
- * 创建者
814
- */
815
- createBy: String
816
- /**
817
- * 创建时间
818
- */
819
- createTime: Number | Date
820
- /**
821
- * 更新者
822
- */
823
- updateBy: String
824
- /**
825
- * 更新时间
826
- */
827
- updateTime: Number | Date
828
- /**
829
- * 备注
830
- */
831
- remark: String
832
- }
833
-
834
- interface SysConfigSet extends Array<SysConfig> {
835
-
836
- /**
837
- * 分页查询
838
- */
839
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysConfig>
840
- /**
841
- * 移除数据
842
- */
843
- remove(...items: Array<SysConfig>): void
844
- /**
845
- * 联合查询,类似LEFT JOIN
846
- */
847
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
848
- /**
849
- * 联合查询,类似INNER JOIN
850
- */
851
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
852
- }
853
-
854
- interface SysLogininfor {
855
-
856
- /**
857
- * 访问ID
858
- */
859
- infoId: Number
860
- /**
861
- * 用户账号
862
- */
863
- userName: String
864
- /**
865
- * 登录IP地址
866
- */
867
- ipaddr: String
868
- /**
869
- * 登录地点
870
- */
871
- loginLocation: String
872
- /**
873
- * 浏览器类型
874
- */
875
- browser: String
876
- /**
877
- * 操作系统
878
- */
879
- os: String
880
- /**
881
- * 登录状态(0成功 1失败)
882
- */
883
- status: String
884
- /**
885
- * 提示消息
886
- */
887
- msg: String
888
- /**
889
- * 访问时间
890
- */
891
- loginTime: Number | Date
892
- }
893
-
894
- interface SysLogininforSet extends Array<SysLogininfor> {
895
-
896
- /**
897
- * 分页查询
898
- */
899
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysLogininfor>
900
- /**
901
- * 移除数据
902
- */
903
- remove(...items: Array<SysLogininfor>): void
904
- /**
905
- * 联合查询,类似LEFT JOIN
906
- */
907
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
908
- /**
909
- * 联合查询,类似INNER JOIN
910
- */
911
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
912
- }
913
-
914
- interface SysJob {
915
-
916
- /**
917
- * 任务ID
918
- */
919
- jobId: Number
920
- /**
921
- * 任务名称
922
- */
923
- jobName: String
924
- /**
925
- * 任务组名
926
- */
927
- jobGroup: String
928
- /**
929
- * 调用目标字符串
930
- */
931
- invokeTarget: String
932
- /**
933
- * cron执行表达式
934
- */
935
- cronExpression: String
936
- /**
937
- * 计划执行错误策略(1立即执行 2执行一次 3放弃执行)
938
- */
939
- misfirePolicy: String
940
- /**
941
- * 是否并发执行(0允许 1禁止)
942
- */
943
- concurrent: String
944
- /**
945
- * 状态(0正常 1暂停)
946
- */
947
- status: String
948
- /**
949
- * 创建者
950
- */
951
- createBy: String
952
- /**
953
- * 创建时间
954
- */
955
- createTime: Number | Date
956
- /**
957
- * 更新者
958
- */
959
- updateBy: String
960
- /**
961
- * 更新时间
962
- */
963
- updateTime: Number | Date
964
- /**
965
- * 备注信息
966
- */
967
- remark: String
968
- }
969
-
970
- interface SysJobSet extends Array<SysJob> {
971
-
972
- /**
973
- * 分页查询
974
- */
975
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysJob>
976
- /**
977
- * 移除数据
978
- */
979
- remove(...items: Array<SysJob>): void
980
- /**
981
- * 联合查询,类似LEFT JOIN
982
- */
983
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
984
- /**
985
- * 联合查询,类似INNER JOIN
986
- */
987
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
988
- }
989
-
990
- interface SysJobLog {
991
-
992
- /**
993
- * 任务日志ID
994
- */
995
- jobLogId: Number
996
- /**
997
- * 任务名称
998
- */
999
- jobName: String
1000
- /**
1001
- * 任务组名
1002
- */
1003
- jobGroup: String
1004
- /**
1005
- * 调用目标字符串
1006
- */
1007
- invokeTarget: String
1008
- /**
1009
- * 日志信息
1010
- */
1011
- jobMessage: String
1012
- /**
1013
- * 执行状态(0正常 1失败)
1014
- */
1015
- status: String
1016
- /**
1017
- * 异常信息
1018
- */
1019
- exceptionInfo: String
1020
- /**
1021
- * 创建时间
1022
- */
1023
- createTime: Number | Date
1024
- }
1025
-
1026
- interface SysJobLogSet extends Array<SysJobLog> {
1027
-
1028
- /**
1029
- * 分页查询
1030
- */
1031
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysJobLog>
1032
- /**
1033
- * 移除数据
1034
- */
1035
- remove(...items: Array<SysJobLog>): void
1036
- /**
1037
- * 联合查询,类似LEFT JOIN
1038
- */
1039
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1040
- /**
1041
- * 联合查询,类似INNER JOIN
1042
- */
1043
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1044
- }
1045
-
1046
- interface SysNotice {
1047
-
1048
- /**
1049
- * 公告ID
1050
- */
1051
- noticeId: Number
1052
- /**
1053
- * 公告标题
1054
- */
1055
- noticeTitle: String
1056
- /**
1057
- * 公告类型(1通知 2公告)
1058
- */
1059
- noticeType: String
1060
- /**
1061
- * 公告内容
1062
- */
1063
- noticeContent: String
1064
- /**
1065
- * 公告状态(0正常 1关闭)
1066
- */
1067
- status: String
1068
- /**
1069
- * 创建者
1070
- */
1071
- createBy: String
1072
- /**
1073
- * 创建时间
1074
- */
1075
- createTime: Number | Date
1076
- /**
1077
- * 更新者
1078
- */
1079
- updateBy: String
1080
- /**
1081
- * 更新时间
1082
- */
1083
- updateTime: Number | Date
1084
- /**
1085
- * 备注
1086
- */
1087
- remark: String
1088
- }
1089
-
1090
- interface SysNoticeSet extends Array<SysNotice> {
1091
-
1092
- /**
1093
- * 分页查询
1094
- */
1095
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<SysNotice>
1096
- /**
1097
- * 移除数据
1098
- */
1099
- remove(...items: Array<SysNotice>): void
1100
- /**
1101
- * 联合查询,类似LEFT JOIN
1102
- */
1103
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1104
- /**
1105
- * 联合查询,类似INNER JOIN
1106
- */
1107
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1108
- }
1109
-
1110
- interface GenTable {
1111
-
1112
- /**
1113
- * 编号
1114
- */
1115
- tableId: Number
1116
- /**
1117
- * 表名称
1118
- */
1119
- tableName: String
1120
- /**
1121
- * 表描述
1122
- */
1123
- tableComment: String
1124
- /**
1125
- * 关联子表的表名
1126
- */
1127
- subTableName: String
1128
- /**
1129
- * 子表关联的外键名
1130
- */
1131
- subTableFkName: String
1132
- /**
1133
- * 实体类名称
1134
- */
1135
- className: String
1136
- /**
1137
- * 使用的mjs模板
1138
- */
1139
- tplCategory: String
1140
- /**
1141
- * 使用的web模板
1142
- */
1143
- tplWebType: String
1144
- /**
1145
- * 生成包路径
1146
- */
1147
- packageName: String
1148
- /**
1149
- * 生成模块名
1150
- */
1151
- moduleName: String
1152
- /**
1153
- * 生成业务名
1154
- */
1155
- businessName: String
1156
- /**
1157
- * 生成功能名
1158
- */
1159
- functionName: String
1160
- /**
1161
- * 生成功能作者
1162
- */
1163
- functionAuthor: String
1164
- /**
1165
- * 生成代码方式(0zip压缩包 1自定义路径)
1166
- */
1167
- genType: String
1168
- /**
1169
- * 生成路径(不填默认项目路径)
1170
- */
1171
- genPath: String
1172
- /**
1173
- * 其它生成选项
1174
- */
1175
- options: String
1176
- /**
1177
- * 创建者
1178
- */
1179
- createBy: String
1180
- /**
1181
- * 创建时间
1182
- */
1183
- createTime: Number | Date
1184
- /**
1185
- * 更新者
1186
- */
1187
- updateBy: String
1188
- /**
1189
- * 更新时间
1190
- */
1191
- updateTime: Number | Date
1192
- /**
1193
- * 备注
1194
- */
1195
- remark: String
1196
- }
1197
-
1198
- interface GenTableSet extends Array<GenTable> {
1199
-
1200
- /**
1201
- * 分页查询
1202
- */
1203
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<GenTable>
1204
- /**
1205
- * 移除数据
1206
- */
1207
- remove(...items: Array<GenTable>): void
1208
- /**
1209
- * 联合查询,类似LEFT JOIN
1210
- */
1211
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1212
- /**
1213
- * 联合查询,类似INNER JOIN
1214
- */
1215
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1216
- }
1217
-
1218
- interface GenTableColumn {
1219
-
1220
- /**
1221
- * 编号
1222
- */
1223
- columnId: Number
1224
- /**
1225
- * 归属表编号
1226
- */
1227
- tableId: Number
1228
- /**
1229
- * 列名称
1230
- */
1231
- columnName: String
1232
- /**
1233
- * 列描述
1234
- */
1235
- columnComment: String
1236
- /**
1237
- * 列类型
1238
- */
1239
- columnType: String
1240
- /**
1241
- * JAVA类型
1242
- */
1243
- javaType: String
1244
- /**
1245
- * JAVA字段名
1246
- */
1247
- javaField: String
1248
- /**
1249
- * 是否主键(1是)
1250
- */
1251
- isPk: String
1252
- /**
1253
- * 是否自增(1是)
1254
- */
1255
- isIncrement: String
1256
- /**
1257
- * 是否必填(1是)
1258
- */
1259
- isRequired: String
1260
- /**
1261
- * 是否为插入字段(1是)
1262
- */
1263
- isInsert: String
1264
- /**
1265
- * 是否编辑字段(1是)
1266
- */
1267
- isEdit: String
1268
- /**
1269
- * 是否列表字段(1是)
1270
- */
1271
- isList: String
1272
- /**
1273
- * 是否查询字段(1是)
1274
- */
1275
- isQuery: String
1276
- /**
1277
- * 查询方式(等于、不等于、大于、小于、范围)
1278
- */
1279
- queryType: String
1280
- /**
1281
- * 显示类型(文本框、文本域、下拉框、复选框、单选框、日期控件)
1282
- */
1283
- htmlType: String
1284
- /**
1285
- * 字典类型
1286
- */
1287
- dictType: String
1288
- /**
1289
- * 排序
1290
- */
1291
- sort: Number
1292
- /**
1293
- * 创建者
1294
- */
1295
- createBy: String
1296
- /**
1297
- * 创建时间
1298
- */
1299
- createTime: Number | Date
1300
- /**
1301
- * 更新者
1302
- */
1303
- updateBy: String
1304
- /**
1305
- * 更新时间
1306
- */
1307
- updateTime: Number | Date
1308
- }
1309
-
1310
- interface GenTableColumnSet extends Array<GenTableColumn> {
1311
-
1312
- /**
1313
- * 分页查询
1314
- */
1315
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<GenTableColumn>
1316
- /**
1317
- * 移除数据
1318
- */
1319
- remove(...items: Array<GenTableColumn>): void
1320
- /**
1321
- * 联合查询,类似LEFT JOIN
1322
- */
1323
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1324
- /**
1325
- * 联合查询,类似INNER JOIN
1326
- */
1327
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1328
- }
1329
-
1330
- interface Permissions {
1331
-
1332
- /**
1333
- *
1334
- */
1335
- id: Number
1336
- /**
1337
- *
1338
- */
1339
- permissions: String
1340
- }
1341
-
1342
- interface PermissionsSet extends Array<Permissions> {
1343
-
1344
- /**
1345
- * 分页查询
1346
- */
1347
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<Permissions>
1348
- /**
1349
- * 移除数据
1350
- */
1351
- remove(...items: Array<Permissions>): void
1352
- /**
1353
- * 联合查询,类似LEFT JOIN
1354
- */
1355
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1356
- /**
1357
- * 联合查询,类似INNER JOIN
1358
- */
1359
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1360
- }
1361
-
1362
- interface Service {
1363
-
1364
- /**
1365
- *
1366
- */
1367
- id: Number
1368
- /**
1369
- *
1370
- */
1371
- name: String
1372
- /**
1373
- *
1374
- */
1375
- host: String
1376
- /**
1377
- *
1378
- */
1379
- port: Number
1380
- /**
1381
- *
1382
- */
1383
- path: String
1384
- /**
1385
- *
1386
- */
1387
- status: Number
1388
- /**
1389
- *
1390
- */
1391
- remark: String
1392
- /**
1393
- *
1394
- */
1395
- param1: String
1396
- /**
1397
- *
1398
- */
1399
- param2: String
1400
- /**
1401
- *
1402
- */
1403
- type: Number
1404
- }
1405
-
1406
- interface ServiceSet extends Array<Service> {
1407
-
1408
- indexById(id: Number): Array<Service>
1409
- /**
1410
- * 分页查询
1411
- */
1412
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<Service>
1413
- /**
1414
- * 移除数据
1415
- */
1416
- remove(...items: Array<Service>): void
1417
- /**
1418
- * 联合查询,类似LEFT JOIN
1419
- */
1420
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1421
- /**
1422
- * 联合查询,类似INNER JOIN
1423
- */
1424
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1425
- }
1426
-
1427
- interface ServiceData {
1428
-
1429
- /**
1430
- *
1431
- */
1432
- id: Number
1433
- /**
1434
- *
1435
- */
1436
- name: String
1437
- /**
1438
- *
1439
- */
1440
- method: String
1441
- /**
1442
- *
1443
- */
1444
- remark: String
1445
- }
1446
-
1447
- interface ServiceDataSet extends Array<ServiceData> {
1448
-
1449
- indexById(id: Number): Array<ServiceData>
1450
- /**
1451
- * 分页查询
1452
- */
1453
- page(predicate: Function, index: Number | String, size: Number | String, params: Object): Array<ServiceData>
1454
- /**
1455
- * 移除数据
1456
- */
1457
- remove(...items: Array<ServiceData>): void
1458
- /**
1459
- * 联合查询,类似LEFT JOIN
1460
- */
1461
- eachFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1462
- /**
1463
- * 联合查询,类似INNER JOIN
1464
- */
1465
- filterFlat(array: Array<Object>, predicate: Function | String): Array<Object>
1466
- }
1467
-
1468
-
1469
- export interface Storage {
1470
- sysDept: SysDeptSet,
1471
- sysUser: SysUserSet,
1472
- sysPost: SysPostSet,
1473
- sysRole: SysRoleSet,
1474
- sysMenu: SysMenuSet,
1475
- sysUserRole: SysUserRoleSet,
1476
- sysRoleMenu: SysRoleMenuSet,
1477
- sysRoleDept: SysRoleDeptSet,
1478
- sysUserPost: SysUserPostSet,
1479
- sysOperLog: SysOperLogSet,
1480
- sysDictType: SysDictTypeSet,
1481
- sysDictData: SysDictDataSet,
1482
- sysConfig: SysConfigSet,
1483
- sysLogininfor: SysLogininforSet,
1484
- sysJob: SysJobSet,
1485
- sysJobLog: SysJobLogSet,
1486
- sysNotice: SysNoticeSet,
1487
- genTable: GenTableSet,
1488
- genTableColumn: GenTableColumnSet,
1489
- permissions: PermissionsSet,
1490
- service: ServiceSet,
1491
- serviceData: ServiceDataSet
1492
- }