package com.iplatform.rectext.pojo;
|
|
import java.io.Serializable;
|
import java.util.ArrayList;
|
import java.util.List;
|
|
/**
|
* 业务上传的文本分析数据,主要是课程id与课程描述。
|
* @author 时克英
|
* @date 2022-11-03
|
*/
|
public class UploadText implements Serializable {
|
|
private List<String> title = new ArrayList<>();
|
|
private List<String> text = new ArrayList<>();
|
|
private String type;
|
|
public String getType() {
|
return type;
|
}
|
|
public void setType(String type) {
|
this.type = type;
|
}
|
|
public List<String> getTitle() {
|
return title;
|
}
|
|
public void setTitle(List<String> title) {
|
this.title = title;
|
}
|
|
public List<String> getText() {
|
return text;
|
}
|
|
public void setText(List<String> text) {
|
this.text = text;
|
}
|
|
}
|