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 title = new ArrayList<>(); private List text = new ArrayList<>(); private String type; public String getType() { return type; } public void setType(String type) { this.type = type; } public List getTitle() { return title; } public void setTitle(List title) { this.title = title; } public List getText() { return text; } public void setText(List text) { this.text = text; } }