|
|
@@ -0,0 +1,37 @@
|
|
|
+package com.etotem.cfc.entity;
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
+import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
+import lombok.Data;
|
|
|
+
|
|
|
+import java.io.Serializable;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+@TableName("product_order_gifts")
|
|
|
+public class ProductOrderGift implements Serializable {
|
|
|
+
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ private Long orderId;
|
|
|
+
|
|
|
+ private String orderNo;
|
|
|
+
|
|
|
+ private String giftType;
|
|
|
+
|
|
|
+ private Long giftProductId;
|
|
|
+
|
|
|
+ private String giftProductName;
|
|
|
+
|
|
|
+ private String giftProductImage;
|
|
|
+
|
|
|
+ private Integer cfValue;
|
|
|
+
|
|
|
+ private Integer quantity;
|
|
|
+
|
|
|
+ private Integer fulfilled;
|
|
|
+
|
|
|
+ private Date createdAt;
|
|
|
+}
|