ny
昨天 b6f169fe43a2b13f351aefc152374fc7f0bc8cb7
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
package jnpf.permission.service.impl;
 
 
import cn.hutool.core.collection.CollectionUtil;
import cn.hutool.core.text.StrPool;
import com.baomidou.dynamic.datasource.annotation.DS;
import com.baomidou.dynamic.datasource.annotation.DSTransactional;
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
import com.google.common.collect.Lists;
import jnpf.base.ModuleApi;
import jnpf.base.SysConfigApi;
import jnpf.base.SystemApi;
import jnpf.base.UserInfo;
import jnpf.base.entity.ModuleEntity;
import jnpf.base.entity.SystemEntity;
import jnpf.base.model.base.SystemApiByIdsModel;
import jnpf.base.model.base.SystemApiModel;
import jnpf.base.model.base.SystemBaeModel;
import jnpf.base.model.button.ButtonModel;
import jnpf.base.model.column.ColumnModel;
import jnpf.base.model.form.ModuleFormModel;
import jnpf.base.model.module.ModuleApiByIdAndMarkModel;
import jnpf.base.model.module.ModuleApiByIdsModel;
import jnpf.base.model.module.ModuleModel;
import jnpf.base.model.portalManage.SavePortalAuthModel;
import jnpf.base.model.resource.ResourceModel;
import jnpf.base.service.SuperServiceImpl;
import jnpf.config.ConfigValueUtil;
import jnpf.constant.*;
import jnpf.database.model.dto.PrepSqlDTO;
import jnpf.database.model.superQuery.SuperJsonModel;
import jnpf.database.model.superQuery.SuperQueryJsonModel;
import jnpf.database.sql.util.SqlFrameFastUtil;
import jnpf.database.util.DataSourceUtil;
import jnpf.database.util.DbTypeUtil;
import jnpf.database.util.JdbcUtil;
import jnpf.database.util.TenantDataSourceUtil;
import jnpf.exception.DataException;
import jnpf.exception.NoPermiLoginException;
import jnpf.model.BaseSystemInfo;
import jnpf.model.login.UserSystemVO;
import jnpf.model.tenant.TenantAuthorizeModel;
import jnpf.model.visualJson.FieLdsModel;
import jnpf.model.visualJson.config.ConfigModel;
import jnpf.permission.entity.*;
import jnpf.permission.mapper.*;
import jnpf.permission.model.authCondition.AuthConditionModel;
import jnpf.permission.model.authCondition.AuthGroup;
import jnpf.permission.model.authCondition.AuthItem;
import jnpf.permission.model.authorize.*;
import jnpf.permission.model.position.PosConModel;
import jnpf.permission.service.AuthorizeService;
import jnpf.permission.util.AuthPermUtil;
import jnpf.permission.util.UserUtil;
import jnpf.util.*;
import jnpf.util.context.RequestContext;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.collections4.CollectionUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
 
import java.net.URLDecoder;
import java.util.*;
import java.util.stream.Collectors;
 
/**
 * 操作权限
 *
 * @author JNPF开发平台组
 * @version V3.1.0
 * @copyright 引迈信息技术有限公司
 * @date 2019年9月26日 上午9:18
 */
@Slf4j
@Service
public class AuthorizeServiceImpl extends SuperServiceImpl<AuthorizeMapper, AuthorizeEntity> implements AuthorizeService {
 
    @Autowired
    private DataSourceUtil dataSourceUtils;
    @Autowired
    private CacheKeyUtil cacheKeyUtil;
    @Autowired
    private ConfigValueUtil configValueUtil;
    @Autowired
    private RedisUtil redisUtil;
    @Autowired
    private SysConfigApi sysconfigApi;
    @Autowired
    private ModuleApi moduleApi;
    @Autowired
    private SystemApi systemApi;
    @Autowired
    private UserUtil userUtil;
 
    @Autowired
    private UserMapper userMapper;
    @Autowired
    private OrganizeMapper organizeMapper;
    @Autowired
    private PositionMapper positionMapper;
    @Autowired
    private RoleMapper roleMapper;
    @Autowired
    private StandingMapper standingMapper;
    @Autowired
    private RoleRelationMapper roleRelationMapper;
    @Autowired
    private UserRelationMapper userRelationMapper;
 
    //当前系统权限
    @Override
    public AuthorizeVO getAuthorize(boolean singletonOrg, String currentSystemCode, Integer isBackend) {
        return this.getAuthorize(singletonOrg, currentSystemCode, isBackend, false);
    }
 
    //全部系统权限
    @Override
    public AuthorizeVO getAuthorizeByUser(boolean singletonOrg) {
        //获取全部应用权限
        return this.getAuthorize(singletonOrg, null, 0, true);
    }
 
    @Override
    public AuthorizeVO getAuthorize(boolean singletonOrg, String currentSystemCode, Integer isBackend, Boolean allSystem) {
        boolean isPc = RequestContext.isOrignPc();
        String pcCode = isPc ? JnpfConst.WEB : JnpfConst.APP;
        BaseSystemInfo baseSystemInfo = sysconfigApi.getSysConfigInfo();
        UserInfo userInfo = UserProvider.getUser();
        OtherModel otherModel = new OtherModel();
        List<ModuleModel> moduleList = new ArrayList<>();
        List<ButtonModel> buttonList = new ArrayList<>();
        List<ColumnModel> columnList = new ArrayList<>();
        List<ResourceModel> resourceList = new ArrayList<>();
        List<ModuleFormModel> formsList = new ArrayList<>();
        List<SystemBaeModel> systemList = new ArrayList<>();
        List<String> flowList = new ArrayList<>();
        List<UserSystemVO> standingListVo = new ArrayList<>();
        boolean isAdmin = userInfo.getIsAdministrator();
        String currentSystemId = "";
        SystemEntity info = null;
        if (StringUtil.isNotEmpty(currentSystemCode)) {
            try {
                currentSystemCode = URLDecoder.decode(currentSystemCode, "UTF-8");
            } catch (Exception e) {
            }
            info = systemApi.getInfoByEnCode(currentSystemCode);
            if (info == null) {
                throw new NoPermiLoginException(MsgCode.PS032.get());
            }
            currentSystemId = info.getId();
        }
 
        List<String> moduleAuthorize = new ArrayList<>();
        List<String> moduleUrlAddressAuthorize = new ArrayList<>();
        if (configValueUtil.isMultiTenancy()) {
            TenantAuthorizeModel tenantAuthorizeModel = TenantDataSourceUtil.getCacheModuleAuthorize(userInfo.getTenantId());
            moduleAuthorize = tenantAuthorizeModel.getModuleIdList();
            moduleUrlAddressAuthorize = tenantAuthorizeModel.getUrlAddressList();
        }
 
        //后台菜单编码列表
        List<String> appComModule = new ArrayList<>();
        appComModule.add(JnpfConst.APP_BACKEND);
        appComModule.addAll(JnpfConst.APP_CONFIG_MODULE);
        appComModule.addAll(JnpfConst.ONLINE_DEV_MODULE);
        if (!isAdmin) {
            //获取用户所有权限
            List<String> objectIds = new ArrayList<>();
            List<String> positionIds = userInfo.getPositionIds();
            List<String> roleIds = roleMapper.getListByIds(userInfo.getRoleIds()).stream()
                    .filter(t -> !PermissionConst.ORGANIZE.equals(t.getType())).map(RoleEntity::getId).collect(Collectors.toList());
            objectIds.addAll(positionIds);
            objectIds.addAll(roleIds);
            List<AuthorizeEntity> authorizeList = this.getListByObjectId(objectIds);
            List<AuthorizeEntity> standingList = authorizeList.stream().filter(t -> PermissionConst.STAND.equals(t.getItemType())).collect(Collectors.toList());
 
            List<String> posAndRoles = new ArrayList<>();
            //非管理员,走身份(standingSwitch)
            if (CollectionUtil.isNotEmpty(standingList) && configValueUtil.isStandingSwitch()) {
                //获取身份id列表
                List<String> standingIds = standingList.stream().map(AuthorizeEntity::getItemId).collect(Collectors.toList());
                //设置当前身份
                String standingId = setCurrentStanding(standingIds, standingListVo);
                if (StringUtil.isNotEmpty(standingId)) {
                    //根据当前身份获取角色和岗位
                    List<String> stdPos = standingList.stream().filter(t -> t.getItemId().equals(standingId)
                            && PermissionConst.POSITION.equals(t.getObjectType())).map(AuthorizeEntity::getObjectId).collect(Collectors.toList());
                    //获取当前岗位角色
                    List<String> stdPosRole = roleRelationMapper.getListByObjectId(stdPos, null)
                            .stream().map(RoleRelationEntity::getRoleId).collect(Collectors.toList());
                    List<String> stdRole = standingList.stream().filter(t -> t.getItemId().equals(standingId)
                            && PermissionConst.ROLE.equals(t.getObjectType())).map(AuthorizeEntity::getObjectId).collect(Collectors.toList());
                    posAndRoles.addAll(stdPos);
                    posAndRoles.addAll(stdPosRole);
                    posAndRoles.addAll(stdRole);
                    //重新设置当前用户角色
                    List<RoleEntity> roleList = roleMapper.getListByIds(stdRole);
                    for (RoleEntity roleEntity : roleList) {
                        if (PermissionConst.MANAGER_CODE.equals(roleEntity.getEnCode())) {
                            otherModel.setIsManageRole(true);
                        } else if (PermissionConst.DEVELOPER_CODE.equals(roleEntity.getEnCode())) {
                            otherModel.setIsDevRole(true);
                        } else if (PermissionConst.USER_CODE.equals(roleEntity.getEnCode())) {
                            otherModel.setIsUserRole(true);
                        } else {
                            otherModel.setIsOtherRole(true);
                        }
                    }
                    //通过身份过滤掉多于的权限
                    authorizeList = authorizeList.stream().filter(t -> posAndRoles.contains(t.getObjectId())).collect(Collectors.toList());
                }
            }
 
            //应用
            List<String> systemId = authorizeList.stream().filter(t -> AuthorizeConst.SYSTEM.equals(t.getItemType())).map(AuthorizeEntity::getItemId).collect(Collectors.toList());
            if (systemId.size() > 0) {
                List<SystemEntity> systemAdmin = systemApi.getListByIds(new SystemApiByIdsModel(systemId, moduleAuthorize, singletonOrg ? 0 : 1));
                //配置了流程和协作的菜单但是没有主系统菜单时,直接添加主系统权限
                List<SystemEntity> mainList = systemAdmin.stream().filter(t -> JnpfConst.MAIN_SYSTEM_CODE.equals(t.getEnCode())).collect(Collectors.toList());
                if (CollectionUtil.isEmpty(mainList)) {
                    List<SystemEntity> collect = systemAdmin.stream().filter(t -> JnpfConst.WORK_FLOW_CODE.equals(t.getEnCode()) || JnpfConst.TEAMWORK_CODE.equals(t.getEnCode())).collect(Collectors.toList());
                    if (CollectionUtil.isNotEmpty(collect)) {
                        systemAdmin.add(systemApi.getInfoByEnCode(JnpfConst.MAIN_SYSTEM_CODE));
                    }
                }
                //app无主应用时获取当前第一个应用
                if (!isPc && StringUtil.isEmpty(currentSystemCode)) {
                    info = systemAdmin.stream().filter(t -> !Objects.equals(t.getIsMain(), 1)).findFirst().orElse(null);
                    if (info != null) {
                        currentSystemId = info.getId();
                        currentSystemCode = info.getEnCode();
                    }
                }
                systemList = JsonUtil.getJsonToList(systemAdmin, SystemBaeModel.class);
            }
            List<String> moduleId = authorizeList.stream().filter(t -> AuthorizeConst.MODULE.equals(t.getItemType())).map(AuthorizeEntity::getItemId).collect(Collectors.toList());
            if (moduleId.size() > 0) {
                List<ModuleModel> allSysMenu = this.baseMapper.findModule(moduleId, null, moduleAuthorize, moduleUrlAddressAuthorize, singletonOrg ? 0 : 1);
                List<String> currSys = new ArrayList<>();
                if (StringUtil.isNotEmpty(currentSystemId) && !allSystem) {
                    currSys.add(currentSystemId);
                }
                moduleList = CollectionUtils.isNotEmpty(currSys) ? allSysMenu.stream().filter(t -> currSys.contains(t.getSystemId())).collect(Collectors.toList()) : allSysMenu;
                //是后台管理-非admin
                if (Objects.equals(isBackend, 1)) {
                    moduleList = allSysMenu.stream().filter(t -> appComModule.contains(t.getEnCode())).collect(Collectors.toList());
                }
                //当前系统是否有流程菜单
                if (StringUtil.isNotEmpty(currentSystemCode)) {
                    if (JnpfConst.MAIN_SYSTEM_CODE.equals(currentSystemCode)) {
                        otherModel.setWorkflowEnabled(allSysMenu.stream().anyMatch(t -> JnpfConst.MODULE_CODE.contains(t.getEnCode()) && pcCode.equals(t.getCategory())) ? 1 : 0);
                    } else {
                        otherModel.setWorkflowEnabled(moduleList.stream().anyMatch(t -> JnpfConst.MODULE_CODE.contains(t.getEnCode()) && pcCode.equals(t.getCategory())) ? 1 : 0);
                    }
                }
            }
            // 按钮
            List<String> buttonId = authorizeList.stream().filter(t -> AuthorizeConst.BUTTON.equals(t.getItemType())).map(AuthorizeEntity::getItemId).collect(Collectors.toList());
            if (buttonId.size() > 0) {
                buttonList = this.baseMapper.findButton(buttonId);
            }
            // 列表
            List<String> columnId = authorizeList.stream().filter(t -> AuthorizeConst.COLUMN.equals(t.getItemType())).map(AuthorizeEntity::getItemId).collect(Collectors.toList());
            if (columnId.size() > 0) {
                columnList = this.baseMapper.findColumn(columnId);
            }
            // 数据
            List<String> resourceId = authorizeList.stream().filter(t -> AuthorizeConst.RESOURCE.equals(t.getItemType())).map(AuthorizeEntity::getItemId).collect(Collectors.toList());
            if (resourceId.size() > 0) {
                resourceList = this.baseMapper.findResource(resourceId);
                if (CollectionUtil.isNotEmpty(posAndRoles)) {
                    resourceList = resourceList.stream().filter(t -> posAndRoles.contains(t.getObjectId())).collect(Collectors.toList());
                }
            }
            // 表单
            List<String> formId = authorizeList.stream().filter(t -> AuthorizeConst.FROM.equals(t.getItemType())).map(AuthorizeEntity::getItemId).collect(Collectors.toList());
            if (formId.size() > 0) {
                formsList = this.baseMapper.findForms(formId);
            }
            // 流程
            flowList = authorizeList.stream().filter(t -> AuthorizeConst.FLOW.equals(t.getItemType())).map(AuthorizeEntity::getItemId).collect(Collectors.toList());
        } else {
            buttonList = this.baseMapper.findButtonAdmin(1);
            columnList = this.baseMapper.findColumnAdmin(1);
            resourceList = this.baseMapper.findResourceAdmin(1);
            formsList = this.baseMapper.findFormsAdmin(1);
            List<SystemEntity> systemAdmin = systemApi.findSystemAdmin(new SystemApiModel(moduleAuthorize));
            if (!isPc && StringUtil.isEmpty(currentSystemCode)) {
                info = systemAdmin.stream().filter(t -> !Objects.equals(t.getIsMain(), 1)).findFirst().orElse(null);
                if (info != null) {
                    currentSystemId = info.getId();
                    currentSystemCode = info.getEnCode();
                }
            }
            systemList = JsonUtil.getJsonToList(systemAdmin, SystemBaeModel.class);
            List<ModuleEntity> moduleAdmin = moduleApi.findModuleAdmin(new ModuleApiByIdAndMarkModel(singletonOrg ? 0 : 1, null, moduleAuthorize, moduleUrlAddressAuthorize));
            String thisid = currentSystemId;
            List<ModuleModel> allSysMenu = JsonUtil.getJsonToList(moduleAdmin, ModuleModel.class);
 
            if (StringUtil.isNotEmpty(currentSystemId) && !allSystem) {
                moduleList = allSysMenu.stream().filter(t -> Objects.equals(t.getSystemId(), thisid)).collect(Collectors.toList());
            } else {
                moduleList = allSysMenu;
            }
            //当前系统是否有流程菜单
            if (StringUtil.isNotEmpty(currentSystemCode)) {
                if (JnpfConst.MAIN_SYSTEM_CODE.equals(currentSystemCode)) {
                    otherModel.setWorkflowEnabled(allSysMenu.stream().anyMatch(t -> JnpfConst.MODULE_CODE.contains(t.getEnCode()) && pcCode.equals(t.getCategory())) ? 1 : 0);
                } else {
                    otherModel.setWorkflowEnabled(moduleList.stream().anyMatch(t -> JnpfConst.MODULE_CODE.contains(t.getEnCode()) && pcCode.equals(t.getCategory())) ? 1 : 0);
                }
            }
 
            //超管添加身份
            if (configValueUtil.isStandingSwitch()) {
                UserSystemVO admin = new UserSystemVO();
                admin.setId(1 + "");
                admin.setName(MsgCode.OA025.get());
                admin.setCurrentStanding(true);
                admin.setIcon(PermissionConst.SD_ADMIN_ICON);
                standingListVo.add(admin);
            }
            //是后台管理-admin
            if (Objects.equals(isBackend, 1)) {
                List<ModuleEntity> listByEnCode = moduleApi.getListByEnCode(appComModule);
                moduleList = JsonUtil.getJsonToList(listByEnCode, ModuleModel.class);
            }
        }
 
        //系统配置-流程开关
        moduleList = moduleList.stream().filter(t -> {
            if (!Objects.equals(baseSystemInfo.getFlowSign(), 1) && JnpfConst.WORK_FLOWSIGN.equals(t.getEnCode())) {
                return false;
            } else if (!Objects.equals(baseSystemInfo.getFlowTodo(), 1) && JnpfConst.WORK_FLOWTODO.equals(t.getEnCode())) {
                return false;
            }
            return true;
        }).collect(Collectors.toList());
        //应用前台不需要添加菜单数据
        return new AuthorizeVO(moduleList, buttonList, columnList, resourceList, formsList, systemList, standingListVo, info, flowList, otherModel);
    }
 
    /**
     * 设置当前身份
     *
     * @param standingIds
     * @param standingListVo
     */
    private String setCurrentStanding(List<String> standingIds, List<UserSystemVO> standingListVo) {
        List<StandingEntity> listByIds = standingMapper.getListByIds(standingIds);
        UserEntity info = userMapper.getInfo(UserProvider.getUser().getUserId());
        String currentStanding = "";
        if (RequestContext.isOrignPc()) {
            currentStanding = info.getStanding();
        } else {
            currentStanding = info.getAppStanding();
        }
        for (StandingEntity standing : listByIds) {
            UserSystemVO standingVo = JsonUtil.getJsonToBean(standing, UserSystemVO.class);
            standingVo.setName(standing.getFullName());
            if (StringUtil.isNotEmpty(currentStanding) && currentStanding.equals(standing.getId())) {
                standingVo.setCurrentStanding(true);
            }
            String icon = "";
            switch (standing.getEnCode()) {
                case PermissionConst.MANAGER_CODE:
                    icon = PermissionConst.SD_MANAGER_ICON;
                    break;
                case PermissionConst.DEVELOPER_CODE:
                    icon = PermissionConst.SD_DEVELOPER_ICON;
                    break;
                case PermissionConst.USER_CODE:
                    icon = PermissionConst.SD_USER_ICON;
                    break;
                default:
                    icon = PermissionConst.SD_EXPERIENCER_ICON;
                    break;
            }
            standingVo.setIcon(icon);
            standingListVo.add(standingVo);
        }
        if (CollectionUtil.isEmpty(standingListVo)) {
            return null;
        }
        UserSystemVO currStand = standingListVo.stream().filter(t -> t.isCurrentStanding()).findFirst().orElse(null);
        if (currStand == null) {
            UserSystemVO userSystemVO = standingListVo.stream().filter(t -> PermissionConst.USER_CODE.equals(t.getEnCode()))
                    .findFirst().orElse(standingListVo.get(0));
            userSystemVO.setCurrentStanding(true);
            if (RequestContext.isOrignPc()) {
                info.setStanding(userSystemVO.getId());
            } else {
                info.setAppStanding(userSystemVO.getId());
            }
            userMapper.updateById(info);
            currentStanding = userSystemVO.getId();
        } else {
            currentStanding = currStand.getId();
        }
        return currentStanding;
    }
 
    @Override
    @DSTransactional
    public void saveItemAuth(SavePortalAuthModel portalAuthModel) {
        List<String> ids = portalAuthModel.getIds();
        String id = portalAuthModel.getId();
        String type = portalAuthModel.getType();
        String userId = UserProvider.getLoginUserId();
        // 原始授权角色
        List<AuthorizeEntity> list = new ArrayList<>();
        for (int i = 0; i < ids.size(); i++) {
            AuthorizeEntity authorizeEntity = new AuthorizeEntity();
            authorizeEntity.setId(RandomUtil.uuId());
            authorizeEntity.setItemType(type);
            authorizeEntity.setItemId(ids.get(i));
            authorizeEntity.setObjectType(portalAuthModel.getObjectType());
            authorizeEntity.setObjectId(id);
            authorizeEntity.setSortCode((long) i);
            authorizeEntity.setCreatorTime(new Date());
            authorizeEntity.setCreatorUserId(userId);
            list.add(authorizeEntity);
        }
        QueryWrapper<AuthorizeEntity> queryWrapper = new QueryWrapper<>();
        queryWrapper.lambda().eq(AuthorizeEntity::getItemType, type);
        queryWrapper.lambda().eq(AuthorizeEntity::getObjectId, id);
        this.remove(queryWrapper);
        list.forEach(this::save);
        List<String> userIds = new ArrayList<>();
        String objectType = portalAuthModel.getObjectType();
        if (PermissionConst.ORGANIZE.equals(objectType) || PermissionConst.POSITION.equals(objectType)) {
            userIds.addAll(userRelationMapper.getListByObjectId(id).stream().map(UserRelationEntity::getUserId).collect(Collectors.toList()));
        }
        if (PermissionConst.ROLE.equals(objectType)) {
            userIds.addAll(roleRelationMapper.getListByRoleId(id, PermissionConst.USER).stream().map(RoleRelationEntity::getObjectId).collect(Collectors.toList()));
        }
        userUtil.delCurUser(MsgCode.PS010.get(), userIds);
    }
 
    @Override
    public String save(AuthorizeDataUpForm form) {
        String errStr = "";
        try {
            UserInfo userInfo = UserProvider.getUser();
            String objectType = form.getObjectType();
            String objectId = form.getObjectId();
 
            List<AuthorizeEntity> objectList = new ArrayList<>();
            List<AuthorizeEntity> authorizeList = new ArrayList<>();
            PosConModel posConModel = null;
            // 设置权限归属对象
            if (PermissionConst.ORGANIZE.equals(objectType)) {
                setEntity(new String[]{objectId}, PermissionConst.ORGANIZE, objectList, true);
            }
            if (PermissionConst.POSITION.equals(objectType)) {
                setEntity(new String[]{objectId}, PermissionConst.POSITION, objectList, true);
                PositionEntity info = positionMapper.getInfo(objectId);
                if (Objects.equals(info.getIsCondition(), 1)) {
                    posConModel = JsonUtil.getJsonToBean(info.getConditionJson(), PosConModel.class);
                    posConModel.init();
                }
            }
            if (PermissionConst.ROLE.equals(objectType)) {
                setEntity(new String[]{objectId}, PermissionConst.ROLE, objectList, true);
                RoleEntity info = roleMapper.getInfo(objectId);
                if (Objects.equals(info.getIsCondition(), 1)) {
                    posConModel = JsonUtil.getJsonToBean(info.getConditionJson(), PosConModel.class);
                    posConModel.init();
                }
            }
            List<SystemEntity> sysList = systemApi.getList();
            List<String> mainSysIds = sysList.stream().filter(t -> Objects.equals(t.getIsMain(), 1)).map(SystemEntity::getId).collect(Collectors.toList());
 
            if (form.getModule() != null) {
                List<String> menuList = Arrays.asList(form.getModule());
                List<ModuleEntity> menuEntityList = moduleApi.getModuleByIds(new ModuleApiByIdsModel(menuList));
                Set<String> array = new HashSet<>(menuList);
                //超出权限基数的截取
                if (posConModel != null && posConModel.getNumFlag()) {
                    //移除非菜单数据,用于基数计算
                    List<String> menuIds = menuEntityList.stream().map(ModuleEntity::getId).collect(Collectors.toList());
                    array = menuList.stream().filter(menuIds::contains).collect(Collectors.toSet());
                    List<String> listByObjectId = this.getListByObjectId(objectId, PermissionConst.MODULE).stream().map(AuthorizeEntity::getItemId).collect(Collectors.toList());
                    listByObjectId.removeAll(mainSysIds);
                    if (listByObjectId.size() > 0 && menuList.size() == listByObjectId.size() && menuList.containsAll(listByObjectId)) {
                        return "";
                    }
 
                    //数据库存储权限实际菜单数量
                    List<String> dbMenuIds = moduleApi.getModuleByIds(new ModuleApiByIdsModel(listByObjectId))
                            .stream().filter(t -> !Objects.equals(t.getType(), 1)).map(ModuleEntity::getId).collect(Collectors.toList());
                    //修改的时候权限包含原来的全部权限-并且原权限已达基数。
                    if (listByObjectId.size() > 0 && dbMenuIds.size() >= posConModel.getPermissionNum() && menuList.containsAll(dbMenuIds)) {
                        throw new DataException(MsgCode.SYS144.get());
                    }
 
                    //权限基数的时候只算实际菜单
                    List<String> collect = menuEntityList.stream().filter(t -> !Objects.equals(t.getType(), 1)).map(ModuleEntity::getId).collect(Collectors.toList());
                    List<String> collect1 = menuList.stream().filter(t -> collect.contains(t)).collect(Collectors.toList());
                    int num = collect1.size() - posConModel.getPermissionNum();
                    if (num > 0) {
                        errStr = MsgCode.SYS145.get();
                        List<String> newIds = collect1.subList(0, posConModel.getPermissionNum());
                        newIds.addAll(getParentMenu(menuEntityList, new HashSet<>(newIds)));
                        array = new HashSet<>(newIds);
                    }
                }
                Set<String> systemIds = new HashSet<>();
                Set<String> moduleIds = new HashSet<>(array);
                for (ModuleEntity item : menuEntityList) {
                    if (array.contains(item.getId())) {
                        moduleIds.add(item.getSystemId());
                        systemIds.add(item.getSystemId());
                        if (mainSysIds.contains(item.getSystemId())) {
                            moduleIds.add(CodeConst.XTCD);
                        } else {
                            moduleIds.add(CodeConst.YYCD);
                            if (JnpfConst.WEB.equals(item.getCategory())) {
                                moduleIds.add(item.getSystemId() + "2");
                            }
                            if (JnpfConst.APP.equals(item.getCategory())) {
                                moduleIds.add(item.getSystemId() + "1");
                            }
                        }
                    }
                }
                form.setModule(moduleIds.toArray(new String[0]));
                form.setSystemIds(systemIds.toArray(new String[0]));
                setEntity(form.getSystemIds(), AuthorizeConst.SYSTEM, authorizeList, false);
            }
 
            // 设置权限模块
            setEntity(form.getButton(), AuthorizeConst.BUTTON, authorizeList, false);
            setEntity(form.getModule(), AuthorizeConst.MODULE, authorizeList, false);
            setEntity(form.getColumn(), AuthorizeConst.COLUMN, authorizeList, false);
            setEntity(form.getResource(), AuthorizeConst.RESOURCE, authorizeList, false);
            setEntity(form.getForm(), AuthorizeConst.FROM, authorizeList, false);
 
            //todo 删除角色相关信息 移除下级权限
            List<OrganizeEntity> allOrgList = organizeMapper.getList(true);
            List<PositionEntity> allPosList = positionMapper.getList(true);
            List<String> objectIdAll = objectList.stream().map(AuthorizeEntity::getObjectId).collect(Collectors.toList());
            //移除关联子数据
            deleteAllAuth(form, allOrgList, allPosList);
            //移除权限缓存
            this.removeAuthByUserOrMenu(null, Arrays.asList(form.getModule()));
            //移除权限
            String ids = String.join(",", objectIdAll);
            JdbcUtil.creUpDe(new PrepSqlDTO(XSSEscape.escapeEmpty(SqlFrameFastUtil.AUTHOR_DEL.replace("{authorizeIds}", ids))).withConn(dataSourceUtils, null));
 
            //权限变更提示
            List<String> userIds = new ArrayList<>();
            List<String> listIds = new ArrayList<>();
            if (PermissionConst.ORGANIZE.equals(objectType)) {
                List<String> orgIds = allOrgList.stream().filter(t -> t.getOrganizeIdTree().contains(objectId))
                        .map(OrganizeEntity::getId).collect(Collectors.toList());
                List<String> posIds = allPosList.stream().filter(t -> listIds.contains(t.getOrganizeId())).map(PositionEntity::getId).collect(Collectors.toList());
                listIds.addAll(orgIds);
                listIds.addAll(posIds);
            }
            if (PermissionConst.POSITION.equals(objectType)) {
                List<String> positionIds = allPosList.stream().filter(t -> StringUtil.isNotEmpty(t.getPositionIdTree()) && t.getPositionIdTree().contains(objectId))
                        .map(PositionEntity::getId).collect(Collectors.toList());
                listIds.addAll(positionIds);
            }
            if (PermissionConst.ROLE.equals(objectType)) {
                List<RoleRelationEntity> listByRoleId = roleRelationMapper.getListByRoleId(objectId, null);
                for (RoleRelationEntity rre : listByRoleId) {
                    if (PermissionConst.ORGANIZE.equals(rre.getObjectType())) {
                        List<String> orgIds = allOrgList.stream().filter(t -> t.getOrganizeIdTree().contains(rre.getObjectId()))
                                .map(OrganizeEntity::getId).collect(Collectors.toList());
                        List<String> posIds = allPosList.stream().filter(t -> listIds.contains(t.getOrganizeId())).map(PositionEntity::getId).collect(Collectors.toList());
                        listIds.addAll(orgIds);
                        listIds.addAll(posIds);
                    } else if (PermissionConst.POSITION.equals(rre.getObjectType())) {
                        List<String> positionIds = allPosList.stream().filter(t -> t.getPositionIdTree().contains(rre.getObjectId()))
                                .map(PositionEntity::getId).collect(Collectors.toList());
                        listIds.addAll(positionIds);
                    } else {
                        userIds.addAll(listByRoleId.stream().map(RoleRelationEntity::getObjectId).collect(Collectors.toList()));
                    }
                }
            }
            if (listIds.size() > 0) {
                List<UserRelationEntity> listByObjectIdAll = userRelationMapper.getListByObjectIdAll(listIds);
                userIds.addAll(listByObjectIdAll.stream().map(UserRelationEntity::getUserId).collect(Collectors.toList()));
            }
 
            // 插入数据
            String sql = DbTypeUtil.checkOracle(dataSourceUtils) || DbTypeUtil.checkPostgre(dataSourceUtils) ?
                    SqlFrameFastUtil.INSERT_AUTHORIZE2 : SqlFrameFastUtil.INSERT_AUTHORIZE;
 
            String column_key = StringUtil.EMPTY, column_plceholder = StringUtil.EMPTY, column_value = TenantDataSourceUtil.getTenantColumn();
            if (StringUtil.isNotEmpty(column_value)) {
                column_key = StrPool.COMMA + configValueUtil.getMultiTenantColumn();
                column_plceholder = ",?";
            }
            sql = sql.replace("%COLUMN_KEY%", column_key).replace("%COLUMN_PLACEHOLDER%", column_plceholder);
            PrepSqlDTO dto = new PrepSqlDTO(sql).withConn(dataSourceUtils, null);
            for (int i = 0; i < objectList.size(); i++) {
                for (AuthorizeEntity entityItem : authorizeList) {
                    List<Object> data = new LinkedList<>();
                    data.add(RandomUtil.uuId());
                    data.add(entityItem.getItemType());
                    data.add(entityItem.getItemId());
                    data.add(objectList.get(i).getObjectType());
                    data.add(objectList.get(i).getObjectId());
                    data.add(i);
                    data.add(DateUtil.getNow());
                    data.add(userInfo.getUserId());
                    if (StringUtil.isNotEmpty(column_value)) {
                        data.add(column_value);
                    }
                    dto.addMultiData(data);
                }
            }
            JdbcUtil.creUpDeBatchOneSql(dto);
 
            userUtil.delCurUser(MsgCode.PS010.get(), userIds);
        } catch (DataException e1) {
            e1.printStackTrace();
            log.error("权限报错:" + e1.getMessage());
            throw new DataException(e1.getMessage());
        } catch (Exception e) {
            e.printStackTrace();
            log.error("权限报错:" + e.getMessage());
        }
        return errStr;
    }
 
    private Set<String> getParentMenu(List<ModuleEntity> allMenu, Set<String> childIds) {
        Set<String> newIds = new HashSet<>();
        if (CollectionUtil.isNotEmpty(childIds)) {
            for (ModuleEntity menu : allMenu) {
                if (childIds.contains(menu.getId()) && !"-1".equals(menu.getParentId())) {
                    newIds.add(menu.getParentId());
                }
            }
            if (CollectionUtil.isNotEmpty(newIds)) {
                newIds.addAll(getParentMenu(allMenu, newIds));
            }
            newIds.addAll(childIds);
        }
        return newIds;
    }
 
    /**
     * 删除子权限
     *
     * @param form
     * @param allOrgList
     * @param allPosList
     */
    private void deleteAllAuth(AuthorizeDataUpForm form, List<OrganizeEntity> allOrgList, List<PositionEntity> allPosList) {
        List<RoleRelationEntity> roleRealationList = roleRelationMapper.selectList(new QueryWrapper<>());
        List<AuthorizeEntity> allAuthList = this.list(new QueryWrapper<>());
        Map<String, List<AuthorizeEntity>> allAuthMap = allAuthList.stream().collect(Collectors.groupingBy(AuthorizeEntity::getObjectId));
        //表单提交的列表
        List<String> systemSave = form.getSystemIds() == null ? Collections.EMPTY_LIST : Arrays.asList(form.getModule());
        List<String> moduleSave = form.getModule() == null ? Collections.EMPTY_LIST : Arrays.asList(form.getModule());
        List<String> buttonSave = form.getButton() == null ? Collections.EMPTY_LIST : Arrays.asList(form.getButton());
        List<String> columnSave = form.getColumn() == null ? Collections.EMPTY_LIST : Arrays.asList(form.getColumn());
        List<String> resourceSave = form.getResource() == null ? Collections.EMPTY_LIST : Arrays.asList(form.getResource());
        List<String> formSave = form.getForm() == null ? Collections.EMPTY_LIST : Arrays.asList(form.getForm());
        String objectId = form.getObjectId();
 
        //递归获取
        List<String> deleteAllAuth = AuthPermUtil.getDelAllAuth(AuthorizeSaveParam
                .builder().objectId(form.getObjectId()).objectType(form.getObjectType()).allOrgList(allOrgList).allPosList(allPosList).allAuthMap(allAuthMap)
                .roleRealationList(roleRealationList)
                .systemSave(systemSave).moduleSave(moduleSave).buttonSave(buttonSave).columnSave(columnSave).resourceSave(resourceSave).formSave(formSave)
                .build());
        if (CollectionUtil.isNotEmpty(deleteAllAuth)) {
            QueryWrapper<AuthorizeEntity> qw = new QueryWrapper<>();
            if (deleteAllAuth.size() > 1000) {
                List<List<String>> lists = Lists.partition(deleteAllAuth, 1000);
                for (List<String> list : lists) {
                    qw.lambda().in(AuthorizeEntity::getId, list).or();
                }
            } else {
                qw.lambda().in(AuthorizeEntity::getId, deleteAllAuth);
            }
            this.remove(qw);
        }
    }
 
    /**
     * 权限
     */
    private void setEntity(String[] ids, String type, List<AuthorizeEntity> entityList, Boolean objectFlag) {
        if (ids != null) {
            for (String id : ids) {
                AuthorizeEntity entity = new AuthorizeEntity();
                if (objectFlag) {
                    entity.setObjectType(type);
                    entity.setObjectId(id);
                } else {
                    entity.setItemType(type);
                    entity.setItemId(id);
                }
                entityList.add(entity);
            }
        }
    }
 
    @Override
    public List<AuthorizeEntity> getListByUserId(boolean isAdmin, String userId, boolean standingfilter) {
        if (!isAdmin) {
            QueryWrapper<UserRelationEntity> queryWrapper = new QueryWrapper<>();
            queryWrapper.lambda().eq(UserRelationEntity::getUserId, userId);
            queryWrapper.lambda().eq(UserRelationEntity::getObjectType, PermissionConst.POSITION);
            List<UserRelationEntity> list = userRelationMapper.selectList(queryWrapper);
            List<String> userRelationList = list.stream().map(u -> u.getObjectId()).collect(Collectors.toList());
            userRelationList.add(userId);
            List<String> roleList = roleRelationMapper.getListByObjectId(userRelationList, null)
                    .stream().map(RoleRelationEntity::getRoleId).collect(Collectors.toList());
            userRelationList.addAll(roleList);
 
            //如果开启身份,根据身份过滤部分权限
            List<AuthorizeEntity> listByObjectId = this.getListByObjectId(userRelationList);
            List<AuthorizeEntity> standingList = listByObjectId.stream().filter(t -> PermissionConst.STAND.equals(t.getItemId())).collect(Collectors.toList());
            if (standingfilter && configValueUtil.isStandingSwitch() && standingList.size() > 0) {
                UserEntity info = userMapper.getInfo(userId);
                List<AuthorizeEntity> authorizeByItem = this.getAuthorizeByItem(PermissionConst.STAND, info.getStanding());
                List<String> collect = authorizeByItem.stream().map(AuthorizeEntity::getObjectId).collect(Collectors.toList());
                userRelationList = userRelationList.stream().filter(t -> collect.contains(t)).collect(Collectors.toList());
            }
 
            if (CollectionUtil.isEmpty(userRelationList)) {
                return Collections.EMPTY_LIST;
            }
            QueryWrapper<AuthorizeEntity> wrapper = new QueryWrapper<>();
            wrapper.lambda().in(AuthorizeEntity::getObjectId, userRelationList);
            return this.list(wrapper);
        } else {
            return Collections.EMPTY_LIST;
        }
    }
 
    @Override
    public List<AuthorizeEntity> getListByPosOrRoleId(String objectId, String objectType) {
        QueryWrapper<AuthorizeEntity> wrapper = new QueryWrapper<>();
        if (PermissionConst.POSITION.equals(objectType)) {
            List<String> posId = userRelationMapper.getListByObjectId(objectId, objectType).stream().map(u -> u.getObjectId()).collect(Collectors.toList());
            List<String> posRoleList = roleRelationMapper.getListByObjectId(posId, null)
                    .stream().map(RoleRelationEntity::getRoleId).collect(Collectors.toList());
            posId.addAll(posRoleList);
            wrapper.lambda().in(AuthorizeEntity::getObjectId, posId);
        } else {
            wrapper.lambda().eq(AuthorizeEntity::getObjectId, objectId);
            wrapper.lambda().eq(AuthorizeEntity::getObjectType, PermissionConst.ROLE);
        }
        return this.list(wrapper);
    }
 
    @Override
    @DS("")
    public List<SuperJsonModel> getConditionSql(String moduleId, String systemCode) {
        List<SuperJsonModel> list = new ArrayList<>();
        UserInfo userInfo = UserProvider.getUser();
        String reidsKey = cacheKeyUtil.getUserAuthorize() + moduleId + "_" + userInfo.getUserId();
        long time = 60 * 5;
        AuthorizeVO model;
        if (redisUtil.exists(reidsKey)) {
            model = JsonUtil.getJsonToBean(redisUtil.getString(reidsKey).toString(), AuthorizeVO.class);
        } else {
            model = this.getAuthorize(false, systemCode, 0);
            redisUtil.insert(reidsKey, JsonUtil.getObjectToString(model), time);
        }
        if (model == null) {
            return new ArrayList<>();
        }
        List<ResourceModel> resourceListAll = model.getResourceList().stream().filter(m -> m.getModuleId().equals(moduleId)).collect(Collectors.toList());
        //先遍历一次 查找其中有没有全部方案
        boolean isAll = resourceListAll.stream().filter(item -> "jnpf_alldata".equals(item.getEnCode()) || item.getEnCode().startsWith("jnpf_alldata")).count() > 0;
        //未分配权限方案
        if (isAll || userInfo.getIsAdministrator()) {
            SuperJsonModel superJsonModel = new SuperJsonModel();
            list.add(superJsonModel);
            return list;
        }
        Map<String, List<ResourceModel>> authorizeMap = resourceListAll.stream().filter(t -> StringUtil.isNotEmpty(t.getObjectId())).collect(Collectors.groupingBy(ma -> ma.getObjectId()));
        int num = 0;
        //方案
        for (String key : authorizeMap.keySet()) {
            List<ResourceModel> resourceList = authorizeMap.get(key);
            boolean authorizeLogic = num == 0;
            for (ResourceModel item : resourceList) {
                AuthConditionModel authConditionModel = JsonUtil.getJsonToBean(item.getConditionJson(), AuthConditionModel.class);
                String matchLogic = authConditionModel.getMatchLogic();
                List<SuperQueryJsonModel> conditionList = new ArrayList<>();
                //分组
                for (AuthGroup group : authConditionModel.getConditionList()) {
                    String logic = group.getLogic();
                    List<FieLdsModel> groupList = new ArrayList<>();
                    //条件
                    for (AuthItem fieldItem : group.getGroups()) {
 
                        FieLdsModel fieLdsModel = JsonUtil.getJsonToBean(fieldItem, FieLdsModel.class);
                        String itemField = fieldItem.getField();
                        String table = fieldItem.getTableName();
                        String vModel = "";
                        if (itemField.contains("_jnpf_")) {
                            vModel = itemField.split("_jnpf_")[1];
                        } else if (itemField.toLowerCase().startsWith("tablefield")) {
                            vModel = itemField.split("-")[1];
                        } else {
                            vModel = itemField;
                        }
                        ConfigModel config = fieLdsModel.getConfig();
                        String jnpfKey = fieldItem.getJnpfKey();
                        if (AuthorizeConditionEnum.CURRENTTIME.getCondition().equals(jnpfKey)) {
                            jnpfKey = AuthorizeConst.DATE_PICKER;
                        }
                        config.setJnpfKey(jnpfKey);
                        config.setTableName(table);
                        fieLdsModel.setConfig(config);
                        fieLdsModel.setSymbol(fieldItem.getSymbol());
                        fieLdsModel.setVModel(vModel);
                        fieLdsModel.setId(itemField);
                        fieLdsModel.setFieldValue(fieldItem.getFieldValue());
                        groupList.add(fieLdsModel);
                    }
                    //搜索条件
                    SuperQueryJsonModel queryJsonModel = new SuperQueryJsonModel();
                    queryJsonModel.setGroups(groupList);
                    queryJsonModel.setLogic(logic);
                    conditionList.add(queryJsonModel);
                }
                if (conditionList.size() > 0) {
                    SuperJsonModel superJsonModel = new SuperJsonModel();
                    superJsonModel.setMatchLogic(matchLogic);
                    superJsonModel.setConditionList(conditionList);
                    superJsonModel.setAuthorizeLogic(authorizeLogic);
                    list.add(superJsonModel);
                }
            }
            num += list.size() > 0 ? 1 : 0;
        }
        return list;
    }
 
    @Override
    public void removeAuthByUserOrMenu(List<String> userIds, List<String> menuIds) {
        userIds = userIds == null ? new ArrayList<>() : userIds;
        menuIds = menuIds == null ? new ArrayList<>() : menuIds;
        Set<String> allKeys = redisUtil.getAllKeys();
        for (String cacheKey : allKeys) {
            for (String user : userIds) {
                if (cacheKey.startsWith(cacheKeyUtil.getUserAuthorize()) && cacheKey.contains(user)) {
                    redisUtil.remove(cacheKey);
                }
            }
            for (String menuId : menuIds) {
                if (cacheKey.startsWith(cacheKeyUtil.getUserAuthorize()) && cacheKey.contains(menuId)) {
                    redisUtil.remove(cacheKey);
                }
            }
        }
    }
 
    @Override
    public List<AuthorizeEntity> getListByObjectId(List<String> objectId) {
        return this.baseMapper.getListByObjectId(objectId);
    }
 
    @Override
    public List<AuthorizeEntity> getListByRoleId(String roleId) {
        return this.baseMapper.getListByRoleId(roleId);
    }
 
    @Override
    public List<AuthorizeEntity> getListByObjectId(String objectId, String itemType) {
        return this.baseMapper.getListByObjectId(objectId, itemType);
    }
 
    @Override
    public List<AuthorizeEntity> getListByObjectAndItem(String itemId, String objectType) {
        return this.baseMapper.getListByObjectAndItem(itemId, objectType);
    }
 
    @Override
    public List<AuthorizeEntity> getListByObjectAndItemIdAndType(String itemId, String itemType) {
        return this.baseMapper.getListByObjectAndItemIdAndType(itemId, itemType);
    }
 
    @Override
    @DSTransactional
    public void saveObjectAuth(SavePortalAuthModel portalAuthModel) {
        this.baseMapper.saveObjectAuth(portalAuthModel);
    }
 
    @Override
    public List<AuthorizeEntity> getAuthorizeByItem(String itemType, String itemId) {
        return this.baseMapper.getAuthorizeByItem(itemType, itemId);
    }
 
    @Override
    public List<AuthorizeEntity> getListByRoleIdsAndItemType(List<String> roleIds, String itemType) {
        return this.baseMapper.getListByRoleIdsAndItemType(roleIds, itemType);
    }
 
}