wu
2024-03-12 4677bbb4284ddb08537d6726bbe87400f021c86a
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
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;
    }
 
}