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;
|
}
|
|
}
|