wangting
2024-10-25 6c170b6b427f0882da35957e73f385d318970a06
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
package com.vci.web.service;
 
import com.vci.corba.common.PLException;
import com.vci.starter.web.pagemodel.BaseResult;
 
import java.util.Map;
 
/**
 * 密级管理服务
 * @author ludc
 * @date 2024/10/25 16:47
 */
public interface SecretGradeServiceI {
 
    /**
     * 获取密级管理配置
     * @return
     */
    Map<String,Boolean> getSecretGradeConfig() throws PLException;
 
    /**
     * 用户/机器密级停启配置保存
     * @param secretGradeMap
     * @return
     */
    BaseResult saveSecretGrade(Map<String,Boolean> secretGradeMap);
 
}