From 55ff4ad6155248a7c2f391fd4fe75682a311dac0 Mon Sep 17 00:00:00 2001 From: baoshiwei <baoshiwei@shlanbao.cn> Date: 星期四, 24 七月 2025 16:54:26 +0800 Subject: [PATCH] refactor(svg): 优化 SVG相关组件功能 --- zhitan-common/src/main/java/com/zhitan/common/enums/IndexType.java | 17 +++++++++++++++-- 1 files changed, 15 insertions(+), 2 deletions(-) diff --git a/zhitan-common/src/main/java/com/zhitan/common/enums/IndexType.java b/zhitan-common/src/main/java/com/zhitan/common/enums/IndexType.java index 26110c3..533f8e0 100644 --- a/zhitan-common/src/main/java/com/zhitan/common/enums/IndexType.java +++ b/zhitan-common/src/main/java/com/zhitan/common/enums/IndexType.java @@ -4,9 +4,22 @@ /** * 閲囬泦鎸囨爣 */ - COLLECT, + COLLECT("COLLECT"), /** * 缁熻鎸囨爣 */ - STATISTIC + STATISTIC("STATISTIC"); + + private final String description; + + IndexType(String description) + { + this.description = description; + } + + + public String getDescription() + { + return description; + } } -- Gitblit v1.9.3