endian11
2021-02-03 94764c8945a50e0758ab448d5601a22caa6a73fe
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
package safeluck.drive.evaluation.DB.lightdb;
 
import androidx.room.Entity;
import androidx.room.PrimaryKey;
 
/**
 * DriveJudge
 * Created by lzw on 2021/1/14. 13:32:56
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
@Entity(tableName = "light_all_answers")
public class LightAnswers {
   @ PrimaryKey
    private int id;
   private int question_id;
   private String answer;
   private int choose;
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public int getQuestion_id() {
        return question_id;
    }
 
    public void setQuestion_id(int question_id) {
        this.question_id = question_id;
    }
 
    public String getAnswer() {
        return answer;
    }
 
    public void setAnswer(String answer) {
        this.answer = answer;
    }
 
    public int getChoose() {
        return choose;
    }
 
    public void setChoose(int choose) {
        this.choose = choose;
    }
}