|
|
@@ -0,0 +1,92 @@
|
|
|
+package com.sckw.order.model;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import com.sckw.core.model.base.BaseModel;
|
|
|
+import lombok.Builder;
|
|
|
+import lombok.Getter;
|
|
|
+import lombok.Setter;
|
|
|
+import lombok.ToString;
|
|
|
+
|
|
|
+/**
|
|
|
+ * @desc: 交易订单装卸货地址信息
|
|
|
+ * @author: yzc
|
|
|
+ * @date: 2023-06-25 9:31
|
|
|
+ */
|
|
|
+@Getter
|
|
|
+@Setter
|
|
|
+@ToString
|
|
|
+@Builder
|
|
|
+@TableName("kwo_trade_order_address")
|
|
|
+public class KwoTradeOrderAddress extends BaseModel {
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 交易订单id
|
|
|
+ */
|
|
|
+ private Long orderId;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 订单编号
|
|
|
+ */
|
|
|
+ private String orderNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 地址类型(1装货地址、2卸货地址)
|
|
|
+ */
|
|
|
+ private Integer addressType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 地址名称
|
|
|
+ */
|
|
|
+ private String name;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 地址类型
|
|
|
+ */
|
|
|
+ private Long type;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 联系人姓名
|
|
|
+ */
|
|
|
+ private String contacts;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 联系电话
|
|
|
+ */
|
|
|
+ private String telephone;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 所在地区
|
|
|
+ */
|
|
|
+ private Integer cityCode;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 所属区域名称
|
|
|
+ */
|
|
|
+ private String cityName;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 详细地址
|
|
|
+ */
|
|
|
+ private String detailAddress;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 纬度
|
|
|
+ */
|
|
|
+ private String lat;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 经度
|
|
|
+ */
|
|
|
+ private String lng;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 电子围栏
|
|
|
+ */
|
|
|
+ private String fence;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 入场(1刷身份证、2上报车号、3上报户头、4其它)
|
|
|
+ */
|
|
|
+ private Integer entryType;
|
|
|
+
|
|
|
+}
|