| | |
| | | package com.yeshi.fanli.entity.bus.user;
|
| | |
|
| | | import java.math.BigDecimal;
|
| | | import java.util.Date;
|
| | |
|
| | | /**
|
| | | * 排行榜
|
| | | * |
| | | * @author yj
|
| | | *
|
| | | * @date 2018年7月27日
|
| | | */
|
| | | @org.yeshi.utils.mybatis.Table("yeshi_ec_rankings_record")
|
| | | public class UserRankings {
|
| | |
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "r_id")
|
| | | private Long id;
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "r_show_id")
|
| | | private String showId; // 显示id
|
| | | |
| | | @org.yeshi.utils.mybatis.Column(name = "r_nick_name")
|
| | | private String nickName;// 名称
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "r_portrait")
|
| | | private String portrait; //头像url
|
| | | |
| | | @org.yeshi.utils.mybatis.Column(name = "r_trade_reward")
|
| | | private BigDecimal tradeReward; // 自购奖励
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "r_share_reward")
|
| | | private BigDecimal shareReward; // 分享奖励
|
| | | |
| | | @org.yeshi.utils.mybatis.Column(name = "r_trade_state")
|
| | | private Integer tradeState; // 自购在线状态
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "r_share_state")
|
| | | private Integer shareState; // 分享在线状态
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "r_trade_time")
|
| | | private Date tradeTime; // 自购榜 最后入榜时间
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "r_share_time")
|
| | | private Date shareTime; // 分享榜 最后入榜时间
|
| | |
|
| | | @org.yeshi.utils.mybatis.Column(name = "r_createtime")
|
| | | private Date createtime; // 创建时间
|
| | |
|
| | | public Long getId() {
|
| | | return id;
|
| | | }
|
| | |
|
| | | public void setId(Long id) {
|
| | | this.id = id;
|
| | | }
|
| | |
|
| | | public String getNickName() {
|
| | | return nickName;
|
| | | }
|
| | |
|
| | | public void setNickName(String nickName) {
|
| | | this.nickName = nickName;
|
| | | }
|
| | |
|
| | | public String getPortrait() {
|
| | | return portrait;
|
| | | }
|
| | |
|
| | | public void setPortrait(String portrait) {
|
| | | this.portrait = portrait;
|
| | | }
|
| | |
|
| | | public BigDecimal getTradeReward() {
|
| | | return tradeReward;
|
| | | }
|
| | |
|
| | | public void setTradeReward(BigDecimal tradeReward) {
|
| | | this.tradeReward = tradeReward;
|
| | | }
|
| | |
|
| | | public BigDecimal getShareReward() {
|
| | | return shareReward;
|
| | | }
|
| | |
|
| | | public void setShareReward(BigDecimal shareReward) {
|
| | | this.shareReward = shareReward;
|
| | | }
|
| | |
|
| | | public Date getTradeTime() {
|
| | | return tradeTime;
|
| | | }
|
| | |
|
| | | public void setTradeTime(Date tradeTime) {
|
| | | this.tradeTime = tradeTime;
|
| | | }
|
| | |
|
| | | public Date getShareTime() {
|
| | | return shareTime;
|
| | | }
|
| | |
|
| | | public void setShareTime(Date shareTime) {
|
| | | this.shareTime = shareTime;
|
| | | }
|
| | |
|
| | | public Date getCreatetime() {
|
| | | return createtime;
|
| | | }
|
| | |
|
| | | public void setCreatetime(Date createtime) {
|
| | | this.createtime = createtime;
|
| | | }
|
| | |
|
| | | public Integer getTradeState() {
|
| | | return tradeState;
|
| | | }
|
| | |
|
| | | public void setTradeState(Integer tradeState) {
|
| | | this.tradeState = tradeState;
|
| | | }
|
| | |
|
| | | public Integer getShareState() {
|
| | | return shareState;
|
| | | }
|
| | |
|
| | | public void setShareState(Integer shareState) {
|
| | | this.shareState = shareState;
|
| | | }
|
| | |
|
| | | public String getShowId() {
|
| | | return showId;
|
| | | }
|
| | |
|
| | | public void setShowId(String showId) {
|
| | | this.showId = showId;
|
| | | }
|
| | |
|
| | | }
|
| | | package com.yeshi.fanli.entity.bus.user; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 排行榜 |
| | | * |
| | | * @author yj |
| | | * |
| | | * @date 2018年7月27日 |
| | | */ |
| | | @org.yeshi.utils.generater.mybatis.Table("yeshi_ec_rankings_record") |
| | | public class UserRankings { |
| | | |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_id") |
| | | private Long id; |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_show_id") |
| | | private String showId; // 显示id |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_nick_name") |
| | | private String nickName;// 名称 |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_portrait") |
| | | private String portrait; //头像url |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_trade_reward") |
| | | private BigDecimal tradeReward; // 自购奖励 |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_share_reward") |
| | | private BigDecimal shareReward; // 分享奖励 |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_trade_state") |
| | | private Integer tradeState; // 自购在线状态 |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_share_state") |
| | | private Integer shareState; // 分享在线状态 |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_trade_time") |
| | | private Date tradeTime; // 自购榜 最后入榜时间 |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_share_time") |
| | | private Date shareTime; // 分享榜 最后入榜时间 |
| | | |
| | | @org.yeshi.utils.generater.mybatis.Column(name = "r_createtime") |
| | | private Date createtime; // 创建时间 |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public String getNickName() { |
| | | return nickName; |
| | | } |
| | | |
| | | public void setNickName(String nickName) { |
| | | this.nickName = nickName; |
| | | } |
| | | |
| | | public String getPortrait() { |
| | | return portrait; |
| | | } |
| | | |
| | | public void setPortrait(String portrait) { |
| | | this.portrait = portrait; |
| | | } |
| | | |
| | | public BigDecimal getTradeReward() { |
| | | return tradeReward; |
| | | } |
| | | |
| | | public void setTradeReward(BigDecimal tradeReward) { |
| | | this.tradeReward = tradeReward; |
| | | } |
| | | |
| | | public BigDecimal getShareReward() { |
| | | return shareReward; |
| | | } |
| | | |
| | | public void setShareReward(BigDecimal shareReward) { |
| | | this.shareReward = shareReward; |
| | | } |
| | | |
| | | public Date getTradeTime() { |
| | | return tradeTime; |
| | | } |
| | | |
| | | public void setTradeTime(Date tradeTime) { |
| | | this.tradeTime = tradeTime; |
| | | } |
| | | |
| | | public Date getShareTime() { |
| | | return shareTime; |
| | | } |
| | | |
| | | public void setShareTime(Date shareTime) { |
| | | this.shareTime = shareTime; |
| | | } |
| | | |
| | | public Date getCreatetime() { |
| | | return createtime; |
| | | } |
| | | |
| | | public void setCreatetime(Date createtime) { |
| | | this.createtime = createtime; |
| | | } |
| | | |
| | | public Integer getTradeState() { |
| | | return tradeState; |
| | | } |
| | | |
| | | public void setTradeState(Integer tradeState) { |
| | | this.tradeState = tradeState; |
| | | } |
| | | |
| | | public Integer getShareState() { |
| | | return shareState; |
| | | } |
| | | |
| | | public void setShareState(Integer shareState) { |
| | | this.shareState = shareState; |
| | | } |
| | | |
| | | public String getShowId() { |
| | | return showId; |
| | | } |
| | | |
| | | public void setShowId(String showId) { |
| | | this.showId = showId; |
| | | } |
| | | |
| | | } |