package safeluck.drive.evaluation.DB.criterias;
|
|
import androidx.annotation.NonNull;
|
import androidx.room.ColumnInfo;
|
import androidx.room.Entity;
|
import androidx.room.PrimaryKey;
|
|
/**
|
* MyApplication2
|
* Created by lzw on 2019/11/26. 10:15:55
|
* 邮箱:632393724@qq.com
|
* All Rights Saved! Chongqing AnYun Tech co. LTD
|
*
|
* 科目二 I类考场评判标准表
|
*/
|
@Entity(tableName = "criteria")
|
public class Criteria {
|
/**************
|
* item_id item_content deducting_reason score_deducting required _precision
|
23 起步 车门未完全关闭起步 不合格 行驶距离大于1m 时
|
**************/
|
@PrimaryKey
|
@ColumnInfo(name = "item_id")
|
@NonNull
|
private int item_id;
|
|
|
@ColumnInfo(name = "item_content")
|
private String item_content;
|
|
@ColumnInfo(name = "deducting_reason")
|
private String deducting_reason;
|
|
|
@NonNull @ColumnInfo(name = "score_deducting")
|
private int score_deducting;
|
|
@ColumnInfo(name = "required_precision")
|
private String required_precision;
|
|
|
|
public int getItem_id() {
|
return item_id;
|
}
|
|
public void setItem_id(int item_id) {
|
this.item_id = item_id;
|
}
|
|
public String getItem_content() {
|
return item_content;
|
}
|
|
public void setItem_content(String item_content) {
|
this.item_content = item_content;
|
}
|
|
public String getDeducting_reason() {
|
return deducting_reason;
|
}
|
|
public void setDeducting_reason(String deducting_reason) {
|
this.deducting_reason = deducting_reason;
|
}
|
|
public int getScore_deducting() {
|
return score_deducting;
|
}
|
|
public void setScore_deducting(int score_deducting) {
|
this.score_deducting = score_deducting;
|
}
|
|
public String getRequired_precision() {
|
return required_precision;
|
}
|
|
public void setRequired_precision(String required_precision) {
|
this.required_precision = required_precision;
|
}
|
|
@Override
|
public String toString() {
|
return "Criteria{" +
|
|
", item_id=" + item_id +
|
", item_content='" + item_content + '\'' +
|
", deducting_reason='" + deducting_reason + '\'' +
|
", score_deducting=" + score_deducting +
|
", required_precision='" + required_precision + '\'' +
|
'}';
|
}
|
}
|