|
@@ -0,0 +1,82 @@
|
|
|
+package com.yh.saas.plugin.yiliangyiyun.entity;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotations.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotations.TableName;
|
|
|
+import com.baomidou.mybatisplus.enums.IdType;
|
|
|
+import com.yh.saas.common.support.entity.BaseModel;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import lombok.experimental.Accessors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 记录轨迹明细
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author Gdc
|
|
|
+ * @since 2022-06-29
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("track_detail_info")
|
|
|
+public class TrackDetailInfo extends BaseModel<TrackDetailInfo> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键id
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.UUID)
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 公司id
|
|
|
+ */
|
|
|
+ private String compId;
|
|
|
+ /**
|
|
|
+ * 用户id
|
|
|
+ */
|
|
|
+ private String commonId;
|
|
|
+ /**
|
|
|
+ * 加油id
|
|
|
+ */
|
|
|
+ private String fillingId;
|
|
|
+ /**
|
|
|
+ * 车牌号
|
|
|
+ */
|
|
|
+ private String carNo;
|
|
|
+ /**
|
|
|
+ * 省
|
|
|
+ */
|
|
|
+ private String province;
|
|
|
+ /**
|
|
|
+ * 市
|
|
|
+ */
|
|
|
+ private String city;
|
|
|
+ /**
|
|
|
+ * 区
|
|
|
+ */
|
|
|
+ private String area;
|
|
|
+ /**
|
|
|
+ * 详细地址
|
|
|
+ */
|
|
|
+ private String address;
|
|
|
+ /**
|
|
|
+ * 经度
|
|
|
+ */
|
|
|
+ private String longitude;
|
|
|
+ /**
|
|
|
+ * 纬度
|
|
|
+ */
|
|
|
+ private String latitude;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|