From 5710fee2bd5c323096377a72d837050dd52d93b1 Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 03 一月 2023 14:32:14 +0800
Subject: [PATCH] 修复抖音订单更新问题/修复用户注销却自动封禁的bug

---
 fanli/src/main/java/com/yeshi/fanli/dto/push/PushContentDetailDTO.java |    9 +++++----
 1 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/dto/push/PushContentDetailDTO.java b/fanli/src/main/java/com/yeshi/fanli/dto/push/PushContentDetailDTO.java
index 3b72b6d..823f477 100644
--- a/fanli/src/main/java/com/yeshi/fanli/dto/push/PushContentDetailDTO.java
+++ b/fanli/src/main/java/com/yeshi/fanli/dto/push/PushContentDetailDTO.java
@@ -6,11 +6,11 @@
     private Long uid;
     private String url;
     private String webUrl;
-    private Long goodsId;
+    private String goodsId;
     private PushBaseContent content;
 
 
-    public PushContentDetailDTO(PushTypeEnum type, Long uid, String url, String webUrl, Long goodsId, PushBaseContent content) {
+    public PushContentDetailDTO(PushTypeEnum type, Long uid, String url, String webUrl, String goodsId, PushBaseContent content) {
         this.type = type;
         this.uid = uid;
         this.url = url;
@@ -51,11 +51,11 @@
         this.webUrl = webUrl;
     }
 
-    public Long getGoodsId() {
+    public String getGoodsId() {
         return goodsId;
     }
 
-    public void setGoodsId(Long goodsId) {
+    public void setGoodsId(String goodsId) {
         this.goodsId = goodsId;
     }
 
@@ -66,4 +66,5 @@
     public void setContent(PushBaseContent content) {
         this.content = content;
     }
+
 }

--
Gitblit v1.8.0