From 0258e37f185b220ece0f06656bcfece7921fa45d Mon Sep 17 00:00:00 2001 From: ustcyc <yincun@163.com> Date: 星期一, 31 三月 2025 14:43:34 +0800 Subject: [PATCH] Update README.md --- 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