Pu Zhibing
2025-04-25 4bff66cbe2f53d97766e190bdb0fbe131cadd900
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
package com.stylefeng.guns.modular.system.model;
 
import com.baomidou.mybatisplus.annotations.TableField;
import com.baomidou.mybatisplus.annotations.TableId;
import com.baomidou.mybatisplus.annotations.TableName;
import com.baomidou.mybatisplus.enums.IdType;
import lombok.Data;
 
/**
 * 订单预估轨迹
 * @author zhibing.pu
 * @Date 2025/4/2 15:47
 */
@Data
@TableName("t_order_tracks")
public class OrderTracks {
    /**
     * 订单id
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
    /**
     * 订单id
     */
    @TableField("orderId")
    private Integer orderId;
    /**
     * 订单类型(1=打车,4=包裹)
     */
    @TableField("orderType")
    private Integer orderType;
    /**
     * 存储google行程导航轨迹
     */
    @TableField("googleTracks")
    private String googleTracks;
}