新增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;
}
}