From 78484feacbdc86a09560c7939a6158eb908c674c Mon Sep 17 00:00:00 2001 From: VVT789 <sdxt_0802@163.com> Date: 星期一, 17 三月 2025 18:20:15 +0800 Subject: [PATCH] fix bug --- 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