From 5e7b0ed4a154ad067cbcf4aa1a1c7cce32f9864c Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期五, 26 四月 2024 18:02:17 +0800
Subject: [PATCH] 唯品会链接解析升级
---
fanli/src/main/java/com/yeshi/fanli/entity/bus/share/UserShareGoodsRecord.java | 461 +++++++++++++++++++++++++++++----------------------------
1 files changed, 237 insertions(+), 224 deletions(-)
diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/share/UserShareGoodsRecord.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/share/UserShareGoodsRecord.java
index 2998f65..a45d59d 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/share/UserShareGoodsRecord.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/share/UserShareGoodsRecord.java
@@ -1,224 +1,237 @@
-package com.yeshi.fanli.entity.bus.share;
-
-import java.math.BigDecimal;
-import java.util.Date;
-
-import org.yeshi.utils.mybatis.Column;
-import org.yeshi.utils.mybatis.Table;
-
-import com.google.gson.annotations.Expose;
-
-@Table("yeshi_ec_share_goods_record")
-public class UserShareGoodsRecord {
-
- // 鍒嗕韩鏉ユ簮
- public enum ShareSourceTypeEnum {
- storage("閫夊搧搴�"), activity("鍔ㄦ��"), goodsDetail("鍟嗗搧璇︽儏椤�");
-
- private final String desc;
-
- private ShareSourceTypeEnum(String desc) {
- this.desc = desc;
- }
-
- public String getDesc() {
- return desc;
- }
- }
-
- public static String SHARETYPE_SINGLE = "single"; // 鍗曚釜鍟嗗搧鍒嗕韩
- public static String SHARETYPE_GROUP = "group"; // 澶氬晢鍝佸垎浜�
-
- @Expose
- @Column(name = "sgr_id")
- private Long id;
-
- // 鐢ㄦ埛id
- @Expose
- @Column(name = "sgr_uid")
- private Long uid;
-
- // 鍒嗕韩鏉ユ簮
- @Expose
- @Column(name = "sgr_source")
- private ShareSourceTypeEnum source;
-
- // 鏄剧ず涓诲浘
- @Expose
- @Column(name = "sgr_picture")
- private String picture;
-
- // 鏄剧ず鏍囬鍐呭
- @Expose
- @Column(name = "sgr_title")
- private String title;
-
- // 鍒嗕韩鏃堕棿
- @Column(name = "sgr_createtime")
- private Date createTime;
-
- // 鏇存柊鏃堕棿 锛� 鍗曚釜鍟嗗搧閲嶅鍒嗕韩鏃� 鍙洿鏂� 涓嶉噸澶嶇敓鎴愬垎浜褰�
- @Column(name = "sgr_updatetime")
- private Date updateTime;
-
- // 鍒嗕韩鏃堕棿
- private Long shareTime;
-
-
- // 鍒嗕韩绫诲瀷
- @Expose
- private String shareType;
-
- // 鍟嗗搧鎬绘暟
- @Expose
- private int totalGoods;
-
- // 浠婃棩娴忚
- @Expose
- private int todayBrowse;
-
- // 绱娴忚
- @Expose
- private int totalBrowse;
-
- // 鍟嗗搧鎬绘暟
- @Expose
- private int totalOrder;
-
- // 棰勮鏀剁泭
- private BigDecimal revenueMoney;
-
- // 鏄剧ず鏀剁泭
- @Expose
- private BigDecimal totalMoney;
-
-
-
- public UserShareGoodsRecord(){}
-
- public UserShareGoodsRecord(Long id){
- this.id = id;
- }
-
-
- public Long getId() {
- return id;
- }
-
- public void setId(Long id) {
- this.id = id;
- }
-
- public Long getUid() {
- return uid;
- }
-
- public void setUid(Long uid) {
- this.uid = uid;
- }
-
- public ShareSourceTypeEnum getSource() {
- return source;
- }
-
- public void setSource(ShareSourceTypeEnum source) {
- this.source = source;
- }
-
- public String getPicture() {
- return picture;
- }
-
- public void setPicture(String picture) {
- this.picture = picture;
- }
-
- public Date getCreateTime() {
- return createTime;
- }
-
- public void setCreateTime(Date createTime) {
- this.createTime = createTime;
- }
-
- public Date getUpdateTime() {
- return updateTime;
- }
-
- public void setUpdateTime(Date updateTime) {
- this.updateTime = updateTime;
- }
-
- public String getShareType() {
- return shareType;
- }
-
- public void setShareType(String shareType) {
- this.shareType = shareType;
- }
-
- public int getTotalGoods() {
- return totalGoods;
- }
-
- public void setTotalGoods(int totalGoods) {
- this.totalGoods = totalGoods;
- }
-
- public int getTodayBrowse() {
- return todayBrowse;
- }
-
- public void setTodayBrowse(int todayBrowse) {
- this.todayBrowse = todayBrowse;
- }
-
- public int getTotalBrowse() {
- return totalBrowse;
- }
-
- public void setTotalBrowse(int totalBrowse) {
- this.totalBrowse = totalBrowse;
- }
-
- public int getTotalOrder() {
- return totalOrder;
- }
-
- public void setTotalOrder(int totalOrder) {
- this.totalOrder = totalOrder;
- }
-
- public BigDecimal getTotalMoney() {
- return totalMoney;
- }
-
- public void setTotalMoney(BigDecimal totalMoney) {
- this.totalMoney = totalMoney;
- }
-
- public Long getShareTime() {
- return shareTime;
- }
-
- public void setShareTime(Long shareTime) {
- this.shareTime = shareTime;
- }
-
- public BigDecimal getRevenueMoney() {
- return revenueMoney;
- }
-
- public void setRevenueMoney(BigDecimal revenueMoney) {
- this.revenueMoney = revenueMoney;
- }
-
- public String getTitle() {
- return title;
- }
-
- public void setTitle(String title) {
- this.title = title;
- }
-
-}
+package com.yeshi.fanli.entity.bus.share;
+
+import java.math.BigDecimal;
+import java.util.Date;
+
+import org.yeshi.utils.generater.mybatis.Column;
+import org.yeshi.utils.generater.mybatis.Table;
+
+import com.google.gson.annotations.Expose;
+
+@Table("yeshi_ec_share_goods_record")
+public class UserShareGoodsRecord {
+
+ // 鍒嗕韩鏉ユ簮
+ public enum ShareSourceTypeEnum {
+ storage("閫夊搧搴�"), activity("鍔ㄦ��"), goodsDetail("鍟嗗搧璇︽儏椤�");
+
+ private final String desc;
+
+ private ShareSourceTypeEnum(String desc) {
+ this.desc = desc;
+ }
+
+ public String getDesc() {
+ return desc;
+ }
+ }
+
+ public static String SHARETYPE_SINGLE = "single"; // 鍗曚釜鍟嗗搧鍒嗕韩
+ public static String SHARETYPE_GROUP = "group"; // 澶氬晢鍝佸垎浜�
+
+ @Expose
+ @Column(name = "sgr_id")
+ private Long id;
+
+ // 鐢ㄦ埛id
+ @Expose
+ @Column(name = "sgr_uid")
+ private Long uid;
+
+ // 鍒嗕韩鏉ユ簮
+ @Expose
+ @Column(name = "sgr_source")
+ private ShareSourceTypeEnum source;
+
+ // 鏄剧ず涓诲浘
+ @Expose
+ @Column(name = "sgr_picture")
+ private String picture;
+
+ // 鏄剧ず鏍囬鍐呭
+ @Expose
+ @Column(name = "sgr_title")
+ private String title;
+
+ // 鏄惁宸插垎浜� 鐘舵�侊細0鍒濆鍊� 1宸插垎浜�
+ @Expose
+ @Column(name = "sgr_share_state")
+ private Integer shareState;
+
+ // 鍒嗕韩鏃堕棿
+ @Column(name = "sgr_createtime")
+ private Date createTime;
+
+ // 鏇存柊鏃堕棿 锛� 鍗曚釜鍟嗗搧閲嶅鍒嗕韩鏃� 鍙洿鏂� 涓嶉噸澶嶇敓鎴愬垎浜褰�
+ @Column(name = "sgr_updatetime")
+ private Date updateTime;
+
+ // 鍒嗕韩鏃堕棿
+ @Expose
+ private Long shareTime;
+
+
+ // 鍒嗕韩绫诲瀷
+ @Expose
+ private String shareType;
+
+ // 鍟嗗搧鎬绘暟
+ @Expose
+ private int totalGoods;
+
+ // 浠婃棩娴忚
+ @Expose
+ private int todayBrowse;
+
+ // 绱娴忚
+ @Expose
+ private int totalBrowse;
+
+ // 鍟嗗搧鎬绘暟
+ @Expose
+ private int totalOrder;
+
+ // 棰勮鏀剁泭
+ private BigDecimal revenueMoney;
+
+ // 鏄剧ず鏀剁泭
+ @Expose
+ private BigDecimal totalMoney;
+
+
+
+ public UserShareGoodsRecord(){}
+
+ public UserShareGoodsRecord(Long id){
+ this.id = id;
+ }
+
+
+ public Long getId() {
+ return id;
+ }
+
+ public void setId(Long id) {
+ this.id = id;
+ }
+
+ public Long getUid() {
+ return uid;
+ }
+
+ public void setUid(Long uid) {
+ this.uid = uid;
+ }
+
+ public ShareSourceTypeEnum getSource() {
+ return source;
+ }
+
+ public void setSource(ShareSourceTypeEnum source) {
+ this.source = source;
+ }
+
+ public String getPicture() {
+ return picture;
+ }
+
+ public void setPicture(String picture) {
+ this.picture = picture;
+ }
+
+ public Date getCreateTime() {
+ return createTime;
+ }
+
+ public void setCreateTime(Date createTime) {
+ this.createTime = createTime;
+ }
+
+ public Date getUpdateTime() {
+ return updateTime;
+ }
+
+ public void setUpdateTime(Date updateTime) {
+ this.updateTime = updateTime;
+ }
+
+ public String getShareType() {
+ return shareType;
+ }
+
+ public void setShareType(String shareType) {
+ this.shareType = shareType;
+ }
+
+ public int getTotalGoods() {
+ return totalGoods;
+ }
+
+ public void setTotalGoods(int totalGoods) {
+ this.totalGoods = totalGoods;
+ }
+
+ public int getTodayBrowse() {
+ return todayBrowse;
+ }
+
+ public void setTodayBrowse(int todayBrowse) {
+ this.todayBrowse = todayBrowse;
+ }
+
+ public int getTotalBrowse() {
+ return totalBrowse;
+ }
+
+ public void setTotalBrowse(int totalBrowse) {
+ this.totalBrowse = totalBrowse;
+ }
+
+ public int getTotalOrder() {
+ return totalOrder;
+ }
+
+ public void setTotalOrder(int totalOrder) {
+ this.totalOrder = totalOrder;
+ }
+
+ public BigDecimal getTotalMoney() {
+ return totalMoney;
+ }
+
+ public void setTotalMoney(BigDecimal totalMoney) {
+ this.totalMoney = totalMoney;
+ }
+
+ public Long getShareTime() {
+ return shareTime;
+ }
+
+ public void setShareTime(Long shareTime) {
+ this.shareTime = shareTime;
+ }
+
+ public BigDecimal getRevenueMoney() {
+ return revenueMoney;
+ }
+
+ public void setRevenueMoney(BigDecimal revenueMoney) {
+ this.revenueMoney = revenueMoney;
+ }
+
+ public String getTitle() {
+ return title;
+ }
+
+ public void setTitle(String title) {
+ this.title = title;
+ }
+
+ public Integer getShareState() {
+ return shareState;
+ }
+
+ public void setShareState(Integer shareState) {
+ this.shareState = shareState;
+ }
+}
--
Gitblit v1.8.0