派生自 projectDept/qhighschool

胡仁荣
2022-11-24 06d6372b451b964738cbfe2adb37e1da85d856ed
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;
    }
    
}