admin
2020-07-14 eec7e789a87863c25d92c10ad5dfc22ad80c448d
fanli/src/main/java/com/yeshi/fanli/vo/money/MoneyStatisticVO.java
@@ -19,15 +19,27 @@
   private BigDecimal totalFanLiMoney;// 累计自购返利
   private BigDecimal totalShareMoney;// 累计分享奖金
   private BigDecimal totalInviteMoney;// 累计邀请奖金
   private BigDecimal totalMoney;//累计资金
   
   // 收货详情
   private BigDecimal monthSettleMoney;// 本月已收货
   private BigDecimal lastMonthSettleMoney;// 上月已收货
   private BigDecimal notSettleMoney;// 待确认收货
   private BigDecimal monthUnRecievedMoney; // 本月未到账
   private BigDecimal totalUnRecievedMoney; // 全部未到账
   
   private MoneyPredictVO  todayPredict;// 今日预估
   private MoneyPredictVO  monthPredict;// 本月预估
   public BigDecimal getTotalMoney() {
      return totalMoney;
   }
   public void setTotalMoney(BigDecimal totalMoney) {
      this.totalMoney = totalMoney;
   }
   public BigDecimal getBalanceMoney() {
      return balanceMoney;
@@ -156,4 +168,21 @@
   public void setLink(String link) {
      this.link = link;
   }
   public BigDecimal getMonthUnRecievedMoney() {
      return monthUnRecievedMoney;
   }
   public void setMonthUnRecievedMoney(BigDecimal monthUnRecievedMoney) {
      this.monthUnRecievedMoney = monthUnRecievedMoney;
   }
   public BigDecimal getTotalUnRecievedMoney() {
      return totalUnRecievedMoney;
   }
   public void setTotalUnRecievedMoney(BigDecimal totalUnRecievedMoney) {
      this.totalUnRecievedMoney = totalUnRecievedMoney;
   }
}