From eda538f5144066f4f0af8da045f69031e6de47f6 Mon Sep 17 00:00:00 2001 From: DYL0109 <dn18191638832@163.com> Date: 星期五, 18 四月 2025 11:28:29 +0800 Subject: [PATCH] Merge pull request #66 from zhitan-cloud/develop1.0 --- 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