Pu Zhibing
3 天以前 adc8542adeabbcbeff425d6471762c04e8f3cffe
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
package com.stylefeng.guns.modular.system.model;
 
import com.fasterxml.jackson.annotation.JsonFormat;
import lombok.Data;
import org.springframework.data.mongodb.core.mapping.Document;
 
import java.util.Date;
 
/**
 * <p>
 * 订单坐标信息表
 * </p>
 *
 * @author 吕雪
 * @since 2020-06-08
 */
@Data
@Document(collection = "order_position")
public class TOrderPosition {
    /**
     * 订单类型(1=专车,2=出租车,3=城际,4=小件物流-同城,5=小件物流-跨城,6=包车)
     */
    private Integer orderType;
    /**
     * 订单id
     */
    private Integer orderId;
    /**
     * 司机id
     */
    private Integer driverId;
    /**
     * 经度
     */
    private String lon;
    /**
     * 纬度
     */
    private String lat;
    /**
     * 方向角
     */
    private String directionAngle;
    /**
     * 海拔
     */
    private String altitude;
    /**
     * 添加时间
     */
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
    private Date insertTime;
}