139 lines
3.2 KiB
Java
139 lines
3.2 KiB
Java
package com.klp.domain;
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
/**
|
|
* 多模态分析结果实体类
|
|
*/
|
|
public class MultimodalResult {
|
|
|
|
private String appName;
|
|
private String category;
|
|
private String taskFunctionCategory;
|
|
private String time;
|
|
private Integer apply;
|
|
private String complete;
|
|
private String reason;
|
|
private String taskId;
|
|
private String taskDescription;
|
|
private String folderPath;
|
|
private Map<String, String> security;
|
|
private List<String> riskTypes;
|
|
|
|
public MultimodalResult() {}
|
|
|
|
public MultimodalResult(String appName, String category, String taskFunctionCategory,
|
|
String time, Integer apply, String complete, String reason,
|
|
String taskId, String taskDescription, String folderPath,
|
|
Map<String, String> security, List<String> riskTypes) {
|
|
this.appName = appName;
|
|
this.category = category;
|
|
this.taskFunctionCategory = taskFunctionCategory;
|
|
this.time = time;
|
|
this.apply = apply;
|
|
this.complete = complete;
|
|
this.reason = reason;
|
|
this.taskId = taskId;
|
|
this.taskDescription = taskDescription;
|
|
this.folderPath = folderPath;
|
|
this.security = security;
|
|
this.riskTypes = riskTypes;
|
|
}
|
|
|
|
public String getAppName() {
|
|
return appName;
|
|
}
|
|
|
|
public void setAppName(String appName) {
|
|
this.appName = appName;
|
|
}
|
|
|
|
public String getCategory() {
|
|
return category;
|
|
}
|
|
|
|
public void setCategory(String category) {
|
|
this.category = category;
|
|
}
|
|
|
|
public String getTaskFunctionCategory() {
|
|
return taskFunctionCategory;
|
|
}
|
|
|
|
public void setTaskFunctionCategory(String taskFunctionCategory) {
|
|
this.taskFunctionCategory = taskFunctionCategory;
|
|
}
|
|
|
|
public String getTime() {
|
|
return time;
|
|
}
|
|
|
|
public void setTime(String time) {
|
|
this.time = time;
|
|
}
|
|
|
|
public Integer getApply() {
|
|
return apply;
|
|
}
|
|
|
|
public void setApply(Integer apply) {
|
|
this.apply = apply;
|
|
}
|
|
|
|
public String getComplete() {
|
|
return complete;
|
|
}
|
|
|
|
public void setComplete(String complete) {
|
|
this.complete = complete;
|
|
}
|
|
|
|
public String getReason() {
|
|
return reason;
|
|
}
|
|
|
|
public void setReason(String reason) {
|
|
this.reason = reason;
|
|
}
|
|
|
|
public String getTaskId() {
|
|
return taskId;
|
|
}
|
|
|
|
public void setTaskId(String taskId) {
|
|
this.taskId = taskId;
|
|
}
|
|
|
|
public String getTaskDescription() {
|
|
return taskDescription;
|
|
}
|
|
|
|
public void setTaskDescription(String taskDescription) {
|
|
this.taskDescription = taskDescription;
|
|
}
|
|
|
|
public String getFolderPath() {
|
|
return folderPath;
|
|
}
|
|
|
|
public void setFolderPath(String folderPath) {
|
|
this.folderPath = folderPath;
|
|
}
|
|
|
|
public Map<String, String> getSecurity() {
|
|
return security;
|
|
}
|
|
|
|
public void setSecurity(Map<String, String> security) {
|
|
this.security = security;
|
|
}
|
|
|
|
public List<String> getRiskTypes() {
|
|
return riskTypes;
|
|
}
|
|
|
|
public void setRiskTypes(List<String> riskTypes) {
|
|
this.riskTypes = riskTypes;
|
|
}
|
|
} |