派生自 projectDept/qhighschool

胡仁荣
2022-10-31 fe7381d6e8ec1f427408de0297ac7f41533202f6
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;
    }
    
}