fctom1215
2020-08-27 77a7a59d01616ec5f321d72231fa1cfc5a407c07
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
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_one")
public class CriteriaForI {
/**************
 *    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 "CriteriaForI{" +
                "item_id=" + item_id +
                ", item_content='" + item_content + '\'' +
                ", deducting_reason='" + deducting_reason + '\'' +
                ", score_deducting=" + score_deducting +
                ", required_precision='" + required_precision + '\'' +
                '}';
    }
}