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;
|
}
|