package com.qxueyou.scc.exercise.model;
|
|
import java.io.Serializable;
|
|
|
|
public class ExerciseImportResult implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
/** 一行文本 */
|
private String lineText;
|
|
/** 解析结果 */
|
private Integer type;
|
|
/** 如果解析不出来,跟随上一解析类型时,存储上一次成功解析的类型 */
|
private String lastParse;
|
|
public String getLineText() {
|
return lineText;
|
}
|
|
public void setLineText(String lineText) {
|
this.lineText = lineText;
|
}
|
|
public Integer getType() {
|
return type;
|
}
|
|
public void setType(Integer type) {
|
this.type = type;
|
}
|
|
public String getLastParse() {
|
return lastParse;
|
}
|
|
public void setLastParse(String lastParse) {
|
this.lastParse = lastParse;
|
}
|
|
}
|