问题汇总逻辑
This commit is contained in:
@@ -27,6 +27,8 @@ public class ImCurMessageDTO {
|
||||
private Integer customerType;
|
||||
|
||||
private Long msgTimestamp;
|
||||
|
||||
private String userDemand;
|
||||
|
||||
public ImCurMessageDTO() {
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
package com.volvo.ai.analytic.center.enums;
|
||||
|
||||
public enum QuestionMainCategoryEnum {
|
||||
|
||||
CAR_PURCHASE_RELATED("CAR_PURCHASE_RELATED", "购车相关"),
|
||||
AFTER_SALES_SERVICE("AFTER_SALES_SERVICE", "售后服务"),
|
||||
USER_OPERATION("USER_OPERATION", "用户运营"),
|
||||
CORPORATE_VALUES("CORPORATE_VALUES", "企业价值观"),
|
||||
SCENE_NOT_CLEAR("SCENE_NOT_CLEAR", "场景不明确"),
|
||||
;
|
||||
private String code;
|
||||
private String message;
|
||||
|
||||
QuestionMainCategoryEnum(String code, String message) {
|
||||
this.code = code;
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public String getCode() {
|
||||
return this.code;
|
||||
}
|
||||
|
||||
public String getMessage() {
|
||||
return this.message;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user