yy1717
2020-12-04 5719515b70fd7405e34198f15dfbc78c07975323
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
package safeluck.drive.evaluation.DB.route;
 
import androidx.room.Entity;
import androidx.room.PrimaryKey;
 
import java.util.List;
 
/**
 * DriveJudge
 * Created by lzw on 2020/9/16. 15:06:32
 * 邮箱:632393724@qq.com
 * All Rights Saved! Chongqing AnYun Tech co. LTD
 */
@Entity
public class RouteTriggerLine {
    @PrimaryKey(autoGenerate = true)
    private int id;
    private int road;
    private int type;
    private double x;
    private double y;
 
    //外键  跟线路名称id 保持一致
 
    private int routeline_id;
 
    public int getRouteline_id() {
        return routeline_id;
    }
 
    public void setRouteline_id(int routeline_id) {
        this.routeline_id = routeline_id;
    }
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public int getRoad() {
        return road;
    }
 
    public void setRoad(int road) {
        this.road = road;
    }
 
    public int getType() {
        return type;
    }
 
    public void setType(int type) {
        this.type = type;
    }
 
    public double getX() {
        return x;
    }
 
    public void setX(double x) {
        this.x = x;
    }
 
    public double getY() {
        return y;
    }
 
    public void setY(double y) {
        this.y = y;
    }
}