新增hutool依赖和业务类型枚举类

This commit is contained in:
lxu75
2025-03-04 14:15:55 +08:00
parent d2d8919305
commit fcdfe2d654
2 changed files with 25 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package com.volvo.ai.analytic.center.enums;
import lombok.Getter;
@Getter
public enum BusinessTypeEnum {
COMMUNITYTARGET("COMMUNITYTARGET", "社区舆情分析")
;
private String code;
private String message;
BusinessTypeEnum(String code, String message) {
this.code = code;
this.message = message;
}
}

View File

@@ -16,6 +16,13 @@
<java.encoding>UTF-8</java.encoding> <java.encoding>UTF-8</java.encoding>
</properties> </properties>
<dependencies> <dependencies>
<dependency>
<groupId>cn.hutool</groupId>
<artifactId>hutool-all</artifactId>
<version>5.8.26</version>
</dependency>
<!--API依赖--> <!--API依赖-->
<dependency> <dependency>
<groupId>com.volvo.aicenter</groupId> <groupId>com.volvo.aicenter</groupId>