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