|
@@ -0,0 +1,117 @@
|
|
|
+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-05-17
|
|
|
+ */
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@Accessors(chain = true)
|
|
|
+@TableName("evaluate_info")
|
|
|
+public class EvaluateInfo extends BaseModel<EvaluateInfo> {
|
|
|
+
|
|
|
+ private static final long serialVersionUID = 1L;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 主键
|
|
|
+ */
|
|
|
+ @TableId(type = IdType.UUID)
|
|
|
+ private String id;
|
|
|
+ /**
|
|
|
+ * 司机用户id
|
|
|
+ */
|
|
|
+ private String driverId;
|
|
|
+ /**
|
|
|
+ * 货主用户id
|
|
|
+ */
|
|
|
+ private String ownerId;
|
|
|
+ /**
|
|
|
+ * 司机姓名
|
|
|
+ */
|
|
|
+ private String driverName;
|
|
|
+ /**
|
|
|
+ * 货主姓名
|
|
|
+ */
|
|
|
+ private String ownerName;
|
|
|
+ /**
|
|
|
+ * 订单编号
|
|
|
+ */
|
|
|
+ private String orderNumber;
|
|
|
+ /**
|
|
|
+ * 货主信用(1-5星)
|
|
|
+ */
|
|
|
+ private String ownerCredit;
|
|
|
+ /**
|
|
|
+ * 运费支付(1-5星)
|
|
|
+ */
|
|
|
+ private String freightPayment;
|
|
|
+ /**
|
|
|
+ * 综合满意度(1-5星)
|
|
|
+ */
|
|
|
+ private String comprehensiveSatisfaction;
|
|
|
+ /**
|
|
|
+ * 司机评价内容
|
|
|
+ */
|
|
|
+ private String driverContent;
|
|
|
+ /**
|
|
|
+ * 司机评价图片
|
|
|
+ */
|
|
|
+ private String driverUrl;
|
|
|
+ /**
|
|
|
+ * 司机匿名评价(1是)
|
|
|
+ */
|
|
|
+ private String driverAnonymous;
|
|
|
+ /**
|
|
|
+ * 司机信用(1-5星)
|
|
|
+ */
|
|
|
+ private String driverCredit;
|
|
|
+ /**
|
|
|
+ * 运输效率(1-5星)
|
|
|
+ */
|
|
|
+ private String tranEfficiency;
|
|
|
+ /**
|
|
|
+ * 运输安全(1-5星)
|
|
|
+ */
|
|
|
+ private String tranSafety;
|
|
|
+ /**
|
|
|
+ * 服务质量(1-5星)
|
|
|
+ */
|
|
|
+ private String serviceQuality;
|
|
|
+ /**
|
|
|
+ * 满意度(1-5星)
|
|
|
+ */
|
|
|
+ private String satisfaction;
|
|
|
+ /**
|
|
|
+ * 货主评价内容
|
|
|
+ */
|
|
|
+ private String ownerContent;
|
|
|
+ /**
|
|
|
+ * 货主评价图片
|
|
|
+ */
|
|
|
+ private String ownerUrl;
|
|
|
+ /**
|
|
|
+ * 货主匿名评价(1是)
|
|
|
+ */
|
|
|
+ private String ownerAnonymous;
|
|
|
+
|
|
|
+
|
|
|
+ @Override
|
|
|
+ protected Serializable pkVal() {
|
|
|
+ return this.id;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|