|
@@ -0,0 +1,98 @@
|
|
|
+package org.dromara.bulk.domain;
|
|
|
+/**
|
|
|
+ * 大货订单管理基类
|
|
|
+ */
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+import lombok.EqualsAndHashCode;
|
|
|
+import org.dromara.common.tenant.core.TenantEntity;
|
|
|
+@Data
|
|
|
+@EqualsAndHashCode(callSuper = true)
|
|
|
+@TableName("fa_kuyou_user_order")
|
|
|
+
|
|
|
+public class daHuoDingDanGuanLi extends TenantEntity {
|
|
|
+ /**
|
|
|
+ * id
|
|
|
+ */
|
|
|
+ private Long id;
|
|
|
+ /**
|
|
|
+ * 用户id
|
|
|
+ */
|
|
|
+ private Long user_id;
|
|
|
+ /**
|
|
|
+ * 姓名
|
|
|
+ */
|
|
|
+ private String name;
|
|
|
+ /**
|
|
|
+ * 联系方式
|
|
|
+ */
|
|
|
+ private String phone;
|
|
|
+ /**
|
|
|
+ * 地址
|
|
|
+ */
|
|
|
+ private String address;
|
|
|
+ /**
|
|
|
+ * 订单号
|
|
|
+ */
|
|
|
+ private String order_num;
|
|
|
+ /**
|
|
|
+ * 订单价格
|
|
|
+ */
|
|
|
+ private Float order_price;
|
|
|
+ /**
|
|
|
+ * 状态:0=待审核,1=已审核,2=待发货,3=待收货,4=已收货,5=退款中,6=退款完成,7=交易取消,8=交易完成
|
|
|
+ */
|
|
|
+ private String order_status;
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String remark;
|
|
|
+ /**
|
|
|
+ * 支付状态:0=支付中,1=支付成功,2=支付失败
|
|
|
+ */
|
|
|
+ private String pay_status;
|
|
|
+ /**
|
|
|
+ * 付款时间
|
|
|
+ */
|
|
|
+ private String pay_time;
|
|
|
+ /**
|
|
|
+ * 配送类型:1=专业配送,2=到店自取
|
|
|
+ */
|
|
|
+ private String diver_type;
|
|
|
+ /**
|
|
|
+ * 门店id
|
|
|
+ */
|
|
|
+ private Long store_id;
|
|
|
+ /**
|
|
|
+ * 司机id
|
|
|
+ */
|
|
|
+ private Long diver_id;
|
|
|
+ /**
|
|
|
+ * 司机姓名
|
|
|
+ */
|
|
|
+ private String diver_name;
|
|
|
+ /**
|
|
|
+ * 司机电话
|
|
|
+ */
|
|
|
+ private String diver_phone;
|
|
|
+ /**
|
|
|
+ * 删除时间
|
|
|
+ */
|
|
|
+ private String delete_time;
|
|
|
+ /**
|
|
|
+ * 是否隐藏
|
|
|
+ */
|
|
|
+ private int hide=0;
|
|
|
+ /**
|
|
|
+ * 备注
|
|
|
+ */
|
|
|
+ private String note;
|
|
|
+ /**
|
|
|
+ * 确认收货时间
|
|
|
+ */
|
|
|
+ private String confirm_delivery_time;
|
|
|
+ /**
|
|
|
+ * 工厂用户id
|
|
|
+ */
|
|
|
+ private Long factory_user_id;
|
|
|
+}
|