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