package com.example.springboot.entity;
|
//小车信息表
|
public class CarPosition {
|
public int carid;//小车id
|
public int start;//小车起始位置
|
public int end;//小车终点位置
|
|
public void setcarId(Integer carid) {
|
this.carid = carid;
|
}
|
|
public Integer getcarId() {
|
return carid;
|
}
|
|
public void setStart(Integer start) {
|
this.start = start;
|
}
|
|
public Integer getStart() {
|
return start;
|
}
|
|
public void setEnd(Integer end) {
|
this.end = end;
|
}
|
|
public Integer getEnd() {
|
return end;
|
}
|
|
}
|