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