#
vincentlu
昨天 0b6213a1d96221669173f43b7a604bc37017472a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.zy.acs.manager.core.domain;
 
import lombok.Data;
 
@Data
public class VehicleRuntime {
 
    private VehicleFootprint footprint;
    private double headingRad;
 
    public VehicleRuntime() {
    }
 
    public VehicleRuntime(VehicleFootprint footprint, double headingRad) {
        this.footprint = footprint;
        this.headingRad = headingRad;
    }
 
}