From 8b3c82c0788e23acd889e6f67a91c855693352fd Mon Sep 17 00:00:00 2001 From: yujian <yujian@163.com> Date: 星期三, 13 五月 2020 16:38:29 +0800 Subject: [PATCH] 团队分红统计 --- fanli/src/main/java/com/yeshi/fanli/entity/bus/user/TeamFansInfo.java | 191 +++++++++++++++++++++++------------------------ 1 files changed, 95 insertions(+), 96 deletions(-) diff --git a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/TeamFansInfo.java b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/TeamFansInfo.java index 99362a1..ac9098f 100644 --- a/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/TeamFansInfo.java +++ b/fanli/src/main/java/com/yeshi/fanli/entity/bus/user/TeamFansInfo.java @@ -1,6 +1,5 @@ package com.yeshi.fanli.entity.bus.user; -import java.math.BigDecimal; import java.util.Date; import org.springframework.data.annotation.Id; @@ -38,10 +37,10 @@ private Boolean taobaoBind; // 缁戝畾娣樺疂 @Field - private Boolean weixinBind; // 缁戝畾寰俊 + private String weixinId; // 寰俊鍙� @Field - private String weixinId; // 寰俊鍙� + private Boolean weixinIdExist; // 濉啓寰俊鍙� @Field private String phone; // 鐢佃瘽鍙风爜 @@ -59,7 +58,7 @@ private Integer fansNum; // 绮変笣鏁伴噺 @Field - private BigDecimal income; // 璐︽埛鏀跺叆 + private Integer income; // 璐︽埛鏀跺叆 涔樹互100 @Field private Date incomeTime; // 璐︽埛鏀跺叆缁熻鏃堕棿 @@ -122,20 +121,12 @@ this.nickName = nickName; } - public String getMemoName() { - return memoName; + public UserLevelEnum getLevel() { + return level; } - public void setMemoName(String memoName) { - this.memoName = memoName; - } - - public String getTags() { - return tags; - } - - public void setTags(String tags) { - this.tags = tags; + public void setLevel(UserLevelEnum level) { + this.level = level; } public Boolean getStateValid() { @@ -154,92 +145,20 @@ this.taobaoBind = taobaoBind; } - public Boolean getWeixinBind() { - return weixinBind; - } - - public void setWeixinBind(Boolean weixinBind) { - this.weixinBind = weixinBind; - } - - public Date getActiveTime() { - return activeTime; - } - - public void setActiveTime(Date activeTime) { - this.activeTime = activeTime; - } - - public Integer getFansNum() { - return fansNum; - } - - public void setFansNum(Integer fansNum) { - this.fansNum = fansNum; - } - - public BigDecimal getIncome() { - return income; - } - - public void setIncome(BigDecimal income) { - this.income = income; - } - - public Date getIncomeTime() { - return incomeTime; - } - - public void setIncomeTime(Date incomeTime) { - this.incomeTime = incomeTime; - } - - public Date getUpdateTime() { - return updateTime; - } - - public void setUpdateTime(Date updateTime) { - this.updateTime = updateTime; - } - - public Date getJoinTime() { - return joinTime; - } - - public void setJoinTime(Date joinTime) { - this.joinTime = joinTime; - } - - public String getMemoNameSup() { - return memoNameSup; - } - - public void setMemoNameSup(String memoNameSup) { - this.memoNameSup = memoNameSup; - } - - public String getTagsSup() { - return tagsSup; - } - - public void setTagsSup(String tagsSup) { - this.tagsSup = tagsSup; - } - - public UserLevelEnum getLevel() { - return level; - } - - public void setLevel(UserLevelEnum level) { - this.level = level; - } - public String getWeixinId() { return weixinId; } public void setWeixinId(String weixinId) { this.weixinId = weixinId; + } + + public Boolean getWeixinIdExist() { + return weixinIdExist; + } + + public void setWeixinIdExist(Boolean weixinIdExist) { + this.weixinIdExist = weixinIdExist; } public String getPhone() { @@ -266,4 +185,84 @@ this.inviteCode = inviteCode; } + public Date getActiveTime() { + return activeTime; + } + + public void setActiveTime(Date activeTime) { + this.activeTime = activeTime; + } + + public Integer getFansNum() { + return fansNum; + } + + public void setFansNum(Integer fansNum) { + this.fansNum = fansNum; + } + + public Integer getIncome() { + return income; + } + + public void setIncome(Integer income) { + this.income = income; + } + + public Date getIncomeTime() { + return incomeTime; + } + + public void setIncomeTime(Date incomeTime) { + this.incomeTime = incomeTime; + } + + public Date getJoinTime() { + return joinTime; + } + + public void setJoinTime(Date joinTime) { + this.joinTime = joinTime; + } + + public String getMemoName() { + return memoName; + } + + public void setMemoName(String memoName) { + this.memoName = memoName; + } + + public String getTags() { + return tags; + } + + public void setTags(String tags) { + this.tags = tags; + } + + public String getMemoNameSup() { + return memoNameSup; + } + + public void setMemoNameSup(String memoNameSup) { + this.memoNameSup = memoNameSup; + } + + public String getTagsSup() { + return tagsSup; + } + + public void setTagsSup(String tagsSup) { + this.tagsSup = tagsSup; + } + + public Date getUpdateTime() { + return updateTime; + } + + public void setUpdateTime(Date updateTime) { + this.updateTime = updateTime; + } + } -- Gitblit v1.8.0