删除多模态
This commit is contained in:
@@ -1,139 +0,0 @@
|
||||
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;
|
||||
}
|
||||
}
|
||||
@@ -1,97 +0,0 @@
|
||||
package com.klp.domain;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 多模态任务实体类
|
||||
*/
|
||||
public class MultimodalTask {
|
||||
|
||||
private String appName;
|
||||
private String taskName;
|
||||
private String taskCategory;
|
||||
private String time;
|
||||
private String security;
|
||||
private String folderPath;
|
||||
private String taskId;
|
||||
private List<String> imagePaths;
|
||||
|
||||
public MultimodalTask() {}
|
||||
|
||||
public MultimodalTask(String appName, String taskName, String taskCategory,
|
||||
String time, String security, String folderPath,
|
||||
String taskId, List<String> imagePaths) {
|
||||
this.appName = appName;
|
||||
this.taskName = taskName;
|
||||
this.taskCategory = taskCategory;
|
||||
this.time = time;
|
||||
this.security = security;
|
||||
this.folderPath = folderPath;
|
||||
this.taskId = taskId;
|
||||
this.imagePaths = imagePaths;
|
||||
}
|
||||
|
||||
public String getAppName() {
|
||||
return appName;
|
||||
}
|
||||
|
||||
public void setAppName(String appName) {
|
||||
this.appName = appName;
|
||||
}
|
||||
|
||||
public String getTaskName() {
|
||||
return taskName;
|
||||
}
|
||||
|
||||
public void setTaskName(String taskName) {
|
||||
this.taskName = taskName;
|
||||
}
|
||||
|
||||
public String getTaskCategory() {
|
||||
return taskCategory;
|
||||
}
|
||||
|
||||
public void setTaskCategory(String taskCategory) {
|
||||
this.taskCategory = taskCategory;
|
||||
}
|
||||
|
||||
public String getTime() {
|
||||
return time;
|
||||
}
|
||||
|
||||
public void setTime(String time) {
|
||||
this.time = time;
|
||||
}
|
||||
|
||||
public String getSecurity() {
|
||||
return security;
|
||||
}
|
||||
|
||||
public void setSecurity(String security) {
|
||||
this.security = security;
|
||||
}
|
||||
|
||||
public String getFolderPath() {
|
||||
return folderPath;
|
||||
}
|
||||
|
||||
public void setFolderPath(String folderPath) {
|
||||
this.folderPath = folderPath;
|
||||
}
|
||||
|
||||
public String getTaskId() {
|
||||
return taskId;
|
||||
}
|
||||
|
||||
public void setTaskId(String taskId) {
|
||||
this.taskId = taskId;
|
||||
}
|
||||
|
||||
public List<String> getImagePaths() {
|
||||
return imagePaths;
|
||||
}
|
||||
|
||||
public void setImagePaths(List<String> imagePaths) {
|
||||
this.imagePaths = imagePaths;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user