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