fctom1215
2021-02-03 3ca696a9949851eeb7fbf3d7b9d2b55a1824fad6
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
package safeluck.drive.evaluation.DB.lightdb;
 
import androidx.room.Entity;
import androidx.room.PrimaryKey;
 
/**
 * DriveJudge
 * Created by lzw on 2021/1/14. 13:31:11
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
@Entity(tableName = "alllight_question")
public class LightQuestion {
    @PrimaryKey
    private int id;
 
    private String question;
 
    private int flag;
 
    private int wrong_code;
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getQuestion() {
        return question;
    }
 
    public void setQuestion(String question) {
        this.question = question;
    }
 
    public int getWrong_code() {
        return wrong_code;
    }
 
    public void setWrong_code(int wrong_code) {
        this.wrong_code = wrong_code;
    }
 
    public int getFlag() {
        return flag;
    }
 
    public void setFlag(int flag) {
        this.flag = flag;
    }
}