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/vo/homemodule/FloatImgDetailVO.java | 142 +++++++++++++++++++++++++---------------------- 1 files changed, 76 insertions(+), 66 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/homemodule/FloatImgDetailVO.java b/fanli/src/main/java/com/yeshi/fanli/vo/homemodule/FloatImgDetailVO.java index e2c2ff3..cd79c74 100644 --- a/fanli/src/main/java/com/yeshi/fanli/vo/homemodule/FloatImgDetailVO.java +++ b/fanli/src/main/java/com/yeshi/fanli/vo/homemodule/FloatImgDetailVO.java @@ -1,66 +1,76 @@ -package com.yeshi.fanli.vo.homemodule; - -import com.google.gson.annotations.Expose; - -public class FloatImgDetailVO { - @Expose - private String id; - @Expose - private String img; - @Expose - private String params; - @Expose - private Object jumpDetail; - @Expose - private String showTime; - @Expose - private boolean accountLogin; - - public String getImg() { - return img; - } - - public void setImg(String img) { - this.img = img; - } - - public String getParams() { - return params; - } - - public void setParams(String params) { - this.params = params; - } - - public Object getJumpDetail() { - return jumpDetail; - } - - public void setJumpDetail(Object jumpDetail) { - this.jumpDetail = jumpDetail; - } - - public String getShowTime() { - return showTime; - } - - public void setShowTime(String showTime) { - this.showTime = showTime; - } - - public boolean getAccountLogin() { - return accountLogin; - } - - public void setAccountLogin(boolean accountLogin) { - this.accountLogin = accountLogin; - } - - public String getId() { - return id; - } - - public void setId(String id) { - this.id = id; - } -} +package com.yeshi.fanli.vo.homemodule; + +import com.google.gson.annotations.Expose; + +public class FloatImgDetailVO { + @Expose + private String id; + @Expose + private String img; + @Expose + private String params; + @Expose + private Object jumpDetail; + @Expose + private String showTime; + @Expose + private boolean accountLogin; + @Expose + private boolean playSound; + + public boolean isPlaySound() { + return playSound; + } + + public void setPlaySound(boolean playSound) { + this.playSound = playSound; + } + + public String getImg() { + return img; + } + + public void setImg(String img) { + this.img = img; + } + + public String getParams() { + return params; + } + + public void setParams(String params) { + this.params = params; + } + + public Object getJumpDetail() { + return jumpDetail; + } + + public void setJumpDetail(Object jumpDetail) { + this.jumpDetail = jumpDetail; + } + + public String getShowTime() { + return showTime; + } + + public void setShowTime(String showTime) { + this.showTime = showTime; + } + + public boolean getAccountLogin() { + return accountLogin; + } + + public void setAccountLogin(boolean accountLogin) { + this.accountLogin = accountLogin; + } + + public String getId() { + return id; + } + + public void setId(String id) { + this.id = id; + } +} -- Gitblit v1.8.0