Pu Zhibing
6 天以前 ae58e2ed4030730b772b30c91a8f129de63a94f6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package com.stylefeng.guns.modular.system.warpper;
 
import lombok.Data;
import org.springframework.data.annotation.Id;
import org.springframework.data.mongodb.core.geo.GeoJsonPoint;
import org.springframework.data.mongodb.core.mapping.Document;
 
/**
 * @author zhibing.pu
 * @Date 2025/7/27 10:07
 */
@Data
@Document(collection = "driver_position")
public class DriverPosition {
    @Id
    private Integer driverId;
    /**
     * 点位
     */
    private GeoJsonPoint point;
}