From 30d8e227e8d823b6c38c3b9c90ac2df03b63befe Mon Sep 17 00:00:00 2001
From: admin <weikou2014>
Date: 星期二, 25 二月 2025 16:41:22 +0800
Subject: [PATCH] 淘宝转链接口更新

---
 fanli/src/main/java/com/yeshi/fanli/entity/dynamic/CommentInfo.java |   41 ++++++++++++++++++++++++++++++-----------
 1 files changed, 30 insertions(+), 11 deletions(-)

diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/dynamic/CommentInfo.java b/fanli/src/main/java/com/yeshi/fanli/entity/dynamic/CommentInfo.java
index 6527d87..0f1a9bc 100644
--- a/fanli/src/main/java/com/yeshi/fanli/entity/dynamic/CommentInfo.java
+++ b/fanli/src/main/java/com/yeshi/fanli/entity/dynamic/CommentInfo.java
@@ -1,13 +1,11 @@
 package com.yeshi.fanli.entity.dynamic;
 
 import java.io.Serializable;
-import java.util.Date;
+import java.util.ArrayList;
 import java.util.List;
 
-import org.springframework.format.annotation.DateTimeFormat;
-
 import com.google.gson.annotations.Expose;
-import com.yeshi.fanli.vo.msg.ClientTextStyleVO;
+import com.yeshi.common.vo.ClientTextStyleVO;
 
 public class CommentInfo implements Serializable {
 	private static final long serialVersionUID = 1L;
@@ -36,13 +34,17 @@
 	private String id;
 	// 绫诲瀷
 	@Expose
-	private CommentInfoEnum type;
+	private CommentInfoEnum typeEnum;
+	// 绫诲瀷
+	@Expose
+	private String type;
+	
 	// 鍐呭
 	@Expose
 	private String content;
 	// 鏍囩
 	@Expose
-	private List<ClientTextStyleVO> tagList;
+	private List<ClientTextStyleVO> tagList = new ArrayList<ClientTextStyleVO>() ;
 	// 鏍囩璇存槑
 	@Expose
 	private String tagDesc;
@@ -55,19 +57,27 @@
 	private String coupon;
 	// 鍒告潵婧�
 	private String couponSource;
-	// 缁撴潫鏃堕棿
-//	@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") 
-//	private Date endTime;
 	
+	// 閫氱敤鍒告槸鍚﹁浆閾�
+	private Boolean needSpin;
+			
 	private String tags;
 	private String tagsColour;
 	private String endTime;
+ 
+	public CommentInfoEnum getTypeEnum() {
+		return typeEnum;
+	}
 
-	public CommentInfoEnum getType() {
+	public void setTypeEnum(CommentInfoEnum typeEnum) {
+		this.typeEnum = typeEnum;
+	}
+
+	public String getType() {
 		return type;
 	}
 
-	public void setType(CommentInfoEnum type) {
+	public void setType(String type) {
 		this.type = type;
 	}
 
@@ -158,4 +168,13 @@
 	public void setEndTime(String endTime) {
 		this.endTime = endTime;
 	}
+
+	public Boolean getNeedSpin() {
+		return needSpin;
+	}
+
+	public void setNeedSpin(Boolean needSpin) {
+		this.needSpin = needSpin;
+	}
+	
 }

--
Gitblit v1.8.0