派生自 projectDept/qhighschool

EricsHu
2023-11-26 1da190e7f267bcd3501884f3aeaac7476850fec7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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;
    }
    
}