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/redpack/RedPackWinProgressVO.java | 150 ++++++++++++++++++++++++++----------------------- 1 files changed, 80 insertions(+), 70 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/vo/redpack/RedPackWinProgressVO.java b/fanli/src/main/java/com/yeshi/fanli/vo/redpack/RedPackWinProgressVO.java index 9d61967..a519912 100644 --- a/fanli/src/main/java/com/yeshi/fanli/vo/redpack/RedPackWinProgressVO.java +++ b/fanli/src/main/java/com/yeshi/fanli/vo/redpack/RedPackWinProgressVO.java @@ -1,70 +1,80 @@ -package com.yeshi.fanli.vo.redpack; - -import java.io.Serializable; - -import com.google.gson.annotations.Expose; - -public class RedPackWinProgressVO implements Serializable { - - /** - * - */ - private static final long serialVersionUID = 1L; - - @Expose - private String name; - @Expose - private String portrait; - @Expose - private String money; - @Expose - private String time; - - public RedPackWinProgressVO() {} - - public RedPackWinProgressVO(String name, String time) { - this.name = name; - this.time = time; - } - - public RedPackWinProgressVO(String name, String time, String money) { - this.name = name; - this.time = time; - this.money = money; - } - - - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public String getPortrait() { - return portrait; - } - - public void setPortrait(String portrait) { - this.portrait = portrait; - } - - public String getMoney() { - return money; - } - - public void setMoney(String money) { - this.money = money; - } - - public String getTime() { - return time; - } - - public void setTime(String time) { - this.time = time; - } - -} +package com.yeshi.fanli.vo.redpack; + +import java.io.Serializable; + +import com.google.gson.annotations.Expose; + +public class RedPackWinProgressVO implements Serializable { + + /** + * + */ + private static final long serialVersionUID = 1L; + + @Expose + private Long uid; + @Expose + private String name; + @Expose + private String portrait; + @Expose + private String money; + @Expose + private String time; + + public RedPackWinProgressVO() {} + + public RedPackWinProgressVO(String name, String time) { + this.name = name; + this.time = time; + } + + public RedPackWinProgressVO(String name, String time, String money) { + this.name = name; + this.time = time; + this.money = money; + } + + + + public String getName() { + return name; + } + + public void setName(String name) { + this.name = name; + } + + public String getPortrait() { + return portrait; + } + + public void setPortrait(String portrait) { + this.portrait = portrait; + } + + public String getMoney() { + return money; + } + + public void setMoney(String money) { + this.money = money; + } + + public String getTime() { + return time; + } + + public void setTime(String time) { + this.time = time; + } + + public Long getUid() { + return uid; + } + + public void setUid(Long uid) { + this.uid = uid; + } + +} -- Gitblit v1.8.0