|
@@ -0,0 +1,81 @@
|
|
|
+package com.yh.saas.plugin.yiliangyiyun.entity;
|
|
|
+
|
|
|
+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;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+
|
|
|
+/**
|
|
|
+ * <p>
|
|
|
+ * 货主地址信息
|
|
|
+ * </p>
|
|
|
+ *
|
|
|
+ * @author Gdc
|
|
|
+ * @since 2022-03-23
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("cargo_owner_address_info")
|
|
|
+public class CargoOwnerAddressInfo extends BaseModel<CargoOwnerAddressInfo> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.UUID)
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 用户id
|
|
|
+ */
|
|
|
+ private String commonId;
|
|
|
+ /**
|
|
|
+ * 省
|
|
|
+ */
|
|
|
+ private String privates;
|
|
|
+ /**
|
|
|
+ * 市
|
|
|
+ */
|
|
|
+ private String city;
|
|
|
+ /**
|
|
|
+ * 区
|
|
|
+ */
|
|
|
+ private String area;
|
|
|
+ /**
|
|
|
+ * 详细地址
|
|
|
+ */
|
|
|
+ private String detailedAddress;
|
|
|
+ /**
|
|
|
+ * 联系人
|
|
|
+ */
|
|
|
+ private String contacts;
|
|
|
+ /**
|
|
|
+ * 联系电话
|
|
|
+ */
|
|
|
+ private String contactPhone;
|
|
|
+ /**
|
|
|
+ * 默认发货(1是)
|
|
|
+ */
|
|
|
+ private String defaultShipment;
|
|
|
+ /**
|
|
|
+ * 默认收货(1是)
|
|
|
+ */
|
|
|
+ private String defaultReceipt;
|
|
|
+ /**
|
|
|
+ * 置顶标识(1是)
|
|
|
+ */
|
|
|
+ private String toppingFlag;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|