package com.qxueyou.scc.exercise.model;
|
|
import java.io.Serializable;
|
|
public class ExerciseParse implements Serializable {
|
|
private static final long serialVersionUID = 1L;
|
|
//½âÎö½á¹û£º³É¹¦£¬Ê§°Ü£¬ÉÏÒ»ÀàÐÍ
|
private Integer parseResult;
|
|
//½âÎöÀàÐÍ£ºDocµÄÀàÐÍ Ï°ÌâÖ÷Ì⡢ϰÌâÑ¡ÏϰÌâ½âÎö
|
private String parseType;
|
|
//½âÎöÐеÄÎı¾
|
private String parseLine;
|
|
public ExerciseParse(Integer parseResult){
|
this.parseResult=parseResult;
|
}
|
|
public ExerciseParse(Integer parseResult,String parseLine){
|
this.parseResult=parseResult;
|
this.parseLine=parseLine;
|
}
|
|
public ExerciseParse(Integer parseResult,String parseType,String parseLine){
|
this.parseResult=parseResult;
|
this.parseType=parseType;
|
this.parseLine=parseLine;
|
}
|
|
public Integer getParseResult() {
|
return parseResult;
|
}
|
|
public void setParseResult(Integer parseResult) {
|
this.parseResult = parseResult;
|
}
|
|
public String getParseType() {
|
return parseType;
|
}
|
|
public void setParseType(String parseType) {
|
this.parseType = parseType;
|
}
|
|
public String getParseLine() {
|
return parseLine;
|
}
|
|
public void setParseLine(String parseLine) {
|
this.parseLine = parseLine;
|
}
|
|
}
|