|
@@ -0,0 +1,73 @@
|
|
|
+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-02-28
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("agent_cargo_owner_info")
|
|
|
+public class AgentCargoOwnerInfo extends BaseModel<AgentCargoOwnerInfo> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.UUID)
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 用户id
|
|
|
+ */
|
|
|
+ private String commonId;
|
|
|
+ /**
|
|
|
+ * 代理货主用户id
|
|
|
+ */
|
|
|
+ private String agentCommonId;
|
|
|
+ /**
|
|
|
+ * 代理货主姓名
|
|
|
+ */
|
|
|
+ private String name;
|
|
|
+ /**
|
|
|
+ * 代理货主联系电话
|
|
|
+ */
|
|
|
+ private String phone;
|
|
|
+ /**
|
|
|
+ * 代理企业
|
|
|
+ */
|
|
|
+ private String company;
|
|
|
+ /**
|
|
|
+ * 企业授权书附件地址
|
|
|
+ */
|
|
|
+ private String certificateAddressUrl;
|
|
|
+ /**
|
|
|
+ * 状态key(1待审核3已驳回5已授权7已撤销授权)
|
|
|
+ */
|
|
|
+ private String statusKey;
|
|
|
+ /**
|
|
|
+ * 状态
|
|
|
+ */
|
|
|
+ private String status;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|