派生自 projectDept/qhighschool

yn147
2023-05-10 96286178ee1c257c130cb2ad964a781f36c4eee5
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
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;
    }
    
}