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/redpack/RedPackWinInvite.java | 325 +++++++++++++++++++++++++++++------------------------- 1 files changed, 175 insertions(+), 150 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/redpack/RedPackWinInvite.java b/fanli/src/main/java/com/yeshi/fanli/entity/redpack/RedPackWinInvite.java index d1f6cf2..4eaa14f 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/redpack/RedPackWinInvite.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/redpack/RedPackWinInvite.java @@ -1,150 +1,175 @@ -package com.yeshi.fanli.entity.redpack; - -import java.math.BigDecimal; -import java.util.Date; - -import org.yeshi.utils.mybatis.Column; -import org.yeshi.utils.mybatis.Table; - -/** - * 绾㈠寘鑾峰緱璁板綍-閭�璇风浉鍏� - * - * @author Administrator - * - */ -@Table("yeshi_ec_red_pack_win_invite") -public class RedPackWinInvite { - public enum RedPackWinInviteTypeEnum { - newUserReward("棣栨浣跨敤鏉挎牀蹇渷鏂颁汉濂栧姳"), - zeroStageReward("閭�璇峰叧绯荤‘瀹�"), - oneStageReward("鎴愬姛閭�璇峰ソ鍙嬬珛寰楃幇閲�"), - twoStageReward("瀹屾垚鍒嗕韩璁㈠崟閫掑濂栧姳"), - threeStageReward("瀹屾垚鍒嗕韩璁㈠崟杩炵画濂栧姳"); - - private final String desc; - - private RedPackWinInviteTypeEnum(String desc) { - this.desc = desc; - } - - public String getDesc() { - return desc; - } - } - - @Column(name = "rwr_id") - private Long id; - // 鐢ㄦ埛id - @Column(name = "rwr_uid") - private Long uid; - - // 闃熷憳id - @Column(name = "rwr_team_uid") - private Long teamUid; - - // 浣欓 - @Column(name = "rwr_money") - private BigDecimal money; - - // 绫诲瀷 - @Column(name = "rwr_type") - private RedPackWinInviteTypeEnum type; - - // 璁㈠崟鏉ユ簮 - @Column(name = "rwr_source") - private Integer source; - - // 鍞竴鏍囪瘑 - @Column(name = "rwr_identify_code") - private String identifyCode; - - // 璁㈠崟鍙� - @Column(name = "rwr_order_no") - private String orderNo; - - @Column(name = "rwr_create_time") - private Date createTime; - - @Column(name = "rwr_update_time") - private Date updateTime; - - 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 Long getTeamUid() { - return teamUid; - } - - public void setTeamUid(Long teamUid) { - this.teamUid = teamUid; - } - - public BigDecimal getMoney() { - return money; - } - - public void setMoney(BigDecimal money) { - this.money = money; - } - - public RedPackWinInviteTypeEnum getType() { - return type; - } - - public void setType(RedPackWinInviteTypeEnum type) { - this.type = type; - } - - public Integer getSource() { - return source; - } - - public void setSource(Integer source) { - this.source = source; - } - - public String getOrderNo() { - return orderNo; - } - - public void setOrderNo(String orderNo) { - this.orderNo = orderNo; - } - - 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 getIdentifyCode() { - return identifyCode; - } - - public void setIdentifyCode(String identifyCode) { - this.identifyCode = identifyCode; - } -} +package com.yeshi.fanli.entity.redpack; + +import java.math.BigDecimal; +import java.util.Date; + +import org.yeshi.utils.generater.mybatis.Column; +import org.yeshi.utils.generater.mybatis.Table; + +import com.yeshi.fanli.entity.bus.user.UserInfo; + +/** + * 绾㈠寘鑾峰緱璁板綍-閭�璇风浉鍏� + * + * @author Administrator + * + */ +@Table("yeshi_ec_red_pack_win_invite") +public class RedPackWinInvite { + public enum RedPackWinInviteTypeEnum { + newUserReward("棣栨浣跨敤鏉挎牀蹇渷鏂颁汉濂栧姳"), + zeroStageReward("閭�璇峰叧绯荤‘瀹�"), + oneStageReward("鎴愬姛閭�璇峰ソ鍙嬬珛寰楃幇閲�"), + twoStageReward("瀹屾垚鍒嗕韩璁㈠崟閫掑濂栧姳"), + threeStageReward("瀹屾垚鍒嗕韩璁㈠崟杩炵画濂栧姳"), + inviteDownOrder("鎷夋柊绾㈠寘濂栧姳"); + + private final String desc; + + private RedPackWinInviteTypeEnum(String desc) { + this.desc = desc; + } + + public String getDesc() { + return desc; + } + } + + @Column(name = "rwr_id") + private Long id; + // 鐢ㄦ埛id + @Column(name = "rwr_uid") + private Long uid; + + // 闃熷憳id + @Column(name = "rwr_team_uid") + private Long teamUid; + + // 浣欓 + @Column(name = "rwr_money") + private BigDecimal money; + + // 绫诲瀷 + @Column(name = "rwr_type") + private RedPackWinInviteTypeEnum type; + + // 璁㈠崟鏉ユ簮 + @Column(name = "rwr_source") + private Integer source; + + // 鍞竴鏍囪瘑 + @Column(name = "rwr_identify_code") + private String identifyCode; + + // 璁㈠崟鍙� + @Column(name = "rwr_order_no") + private String orderNo; + + @Column(name = "rwr_create_time") + private Date createTime; + + @Column(name = "rwr_update_time") + private Date updateTime; + + // 閭�璇蜂汉 + private UserInfo inviter; + // 鍙楅個浜� + private UserInfo invitee; + + 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 Long getTeamUid() { + return teamUid; + } + + public void setTeamUid(Long teamUid) { + this.teamUid = teamUid; + } + + public BigDecimal getMoney() { + return money; + } + + public void setMoney(BigDecimal money) { + this.money = money; + } + + public RedPackWinInviteTypeEnum getType() { + return type; + } + + public void setType(RedPackWinInviteTypeEnum type) { + this.type = type; + } + + public Integer getSource() { + return source; + } + + public void setSource(Integer source) { + this.source = source; + } + + public String getOrderNo() { + return orderNo; + } + + public void setOrderNo(String orderNo) { + this.orderNo = orderNo; + } + + 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 getIdentifyCode() { + return identifyCode; + } + + public void setIdentifyCode(String identifyCode) { + this.identifyCode = identifyCode; + } + + public UserInfo getInviter() { + return inviter; + } + + public void setInviter(UserInfo inviter) { + this.inviter = inviter; + } + + public UserInfo getInvitee() { + return invitee; + } + + public void setInvitee(UserInfo invitee) { + this.invitee = invitee; + } + +} -- Gitblit v1.8.0