|
@@ -0,0 +1,78 @@
|
|
|
+package com.example.xiaoshiweixinback.domain;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 订单表
|
|
|
+ * @TableName order
|
|
|
+ */
|
|
|
+@TableName(value ="order")
|
|
|
+@Data
|
|
|
+public class Order extends BaseEntity<Order> {
|
|
|
+ /**
|
|
|
+ * ID
|
|
|
+ */
|
|
|
+ private Integer id;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 订单号
|
|
|
+ */
|
|
|
+ private String tradeNo;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 商品类型 1会员 2订单
|
|
|
+ */
|
|
|
+ private Integer goodsType;
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private String goodUuid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 订单状态
|
|
|
+ */
|
|
|
+ private Integer orderState;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 原始价格
|
|
|
+ */
|
|
|
+ private Double orgPrice;
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private Double discount;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 真实价格
|
|
|
+ */
|
|
|
+ private Double truePrice;
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private String personUuid;
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ *
|
|
|
+ */
|
|
|
+ private Date payTime;
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 订单支付参数
|
|
|
+ */
|
|
|
+ private String orderParameter;
|
|
|
+
|
|
|
+}
|