|
|
@@ -0,0 +1,42 @@
|
|
|
+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.math.BigDecimal;
|
|
|
+import java.util.Date;
|
|
|
+
|
|
|
+@Data
|
|
|
+@TableName("nutrition_platform_listing")
|
|
|
+public class NutritionPlatformListing implements Serializable {
|
|
|
+
|
|
|
+ @TableId(type = IdType.AUTO)
|
|
|
+ private Long id;
|
|
|
+
|
|
|
+ private Long productId;
|
|
|
+
|
|
|
+ private String platform;
|
|
|
+
|
|
|
+ private String platformUrl;
|
|
|
+
|
|
|
+ private BigDecimal currentPrice;
|
|
|
+
|
|
|
+ private BigDecimal originalPrice;
|
|
|
+
|
|
|
+ private String priceUnit;
|
|
|
+
|
|
|
+ private BigDecimal pricePerUnit;
|
|
|
+
|
|
|
+ private Integer salesCount;
|
|
|
+
|
|
|
+ private String stockStatus;
|
|
|
+
|
|
|
+ private Date lastChecked;
|
|
|
+
|
|
|
+ private Date createTime;
|
|
|
+
|
|
|
+ private Date updateTime;
|
|
|
+}
|