新增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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user