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
|
*
|
* 科目二 II类考场评判标准表
|
*/
|
@Entity(tableName = "criteria_two")
|
public class CriteriaForII {
|
/**************
|
* 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;
|
}
|