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;
|
}
|
}
|