新增hutool依赖和业务类型枚举类
This commit is contained in:
@@ -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;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -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>
|
||||||
|
|||||||
Reference in New Issue
Block a user