wuyouming666
2023-12-04 c2615a2070d4622bf5717339eae1daef9b40d057
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;
    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;
    }
 
}