wujingjing
2024-10-09 b0b31b379cfb6e57ffc14b3d8804256df25a1ac3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/// 指标敏感度
export enum eMetricOps {
    Unlimited = 0,
    Ordinary = 1,
    Important = 2,
    Core = 3,
}
export const eMetrics_Ops = {
    [eMetricOps.Unlimited]: '限制',
    [eMetricOps.Ordinary]: '普通',
    [eMetricOps.Important]: '重要',
    [eMetricOps.Core]: '核心',
} as const;
 
/// 维度下钻
export enum eDrillingOps {
    Department = 0,
    User = 1,
}
export const eDrilling_Ops = {
    [eDrillingOps.Department]: '部门',
    [eDrillingOps.User]: '用户',
} as const;