wujingjing
2024-10-30 03080e12de7de3fec89b2f77fcf9f73c02bc6cf0
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
import request from '/@/utils/request';
/**
 * @summary 获取缓存键列表
 */
export const GetCacheKeysList = async (req: any = request) => {
    return req({
        url: '/Core/Memory/Cache/GetKeys@V1.0',
        method: 'GET',
    });
};
 
/**
 * @summary 移除缓存
 */
export const RemoveCacheKey = async (params, req: any = request) => {
    return req({
        url: '/Core/Memory/Cache/RemoveKey@V1.0',
        method: 'GET',
        params: params,
    });
};
 
/**
 * @summary 移除所选缓存
 */
export const RemoveSelectCacheKeys = async (params, req: any = request) => {
    return req({
        url: '/Core/Memory/Cache/RemoveKeys@V1.0',
        method: 'GET',
        params: params,
    });
};