admin
2024-04-26 5e7b0ed4a154ad067cbcf4aa1a1c7cce32f9864c
fanli/src/main/java/com/yeshi/fanli/dto/money/ExtractOrderStatisticDTO.java
@@ -1,65 +1,86 @@
package com.yeshi.fanli.dto.money;
import java.math.BigDecimal;
/**
 * 发起提现时的资金统计
 *
 * @author Administrator
 *
 */
public class ExtractOrderStatisticDTO {
   private int orderCount50More;// 返利超过超过50元的订单数量
   private int weiQuanOrderCount;// 维权订单数量
   private BigDecimal weiQuanOrderFanAmount;// 维权订单返还的金额
   private int safeOrderCount;// 安全订单数量
   public ExtractOrderStatisticDTO(int orderCount50More, int weiQuanOrderCount, BigDecimal weiQuanOrderFanAmount,
         int safeOrderCount) {
      this.orderCount50More = orderCount50More;
      this.weiQuanOrderCount = weiQuanOrderCount;
      this.weiQuanOrderFanAmount = weiQuanOrderFanAmount;
      this.safeOrderCount = safeOrderCount;
   }
   public ExtractOrderStatisticDTO() {
   }
   public int getOrderCount50More() {
      return orderCount50More;
   }
   public void setOrderCount50More(int orderCount50More) {
      this.orderCount50More = orderCount50More;
   }
   public int getWeiQuanOrderCount() {
      return weiQuanOrderCount;
   }
   public void setWeiQuanOrderCount(int weiQuanOrderCount) {
      this.weiQuanOrderCount = weiQuanOrderCount;
   }
   public BigDecimal getWeiQuanOrderFanAmount() {
      return weiQuanOrderFanAmount;
   }
   public void setWeiQuanOrderFanAmount(BigDecimal weiQuanOrderFanAmount) {
      this.weiQuanOrderFanAmount = weiQuanOrderFanAmount;
   }
   public int getSafeOrderCount() {
      return safeOrderCount;
   }
   public void setSafeOrderCount(int safeOrderCount) {
      this.safeOrderCount = safeOrderCount;
   }
}
package com.yeshi.fanli.dto.money;
import java.math.BigDecimal;
/**
 * 发起提现时的资金统计
 *
 * @author Administrator
 *
 */
public class ExtractOrderStatisticDTO {
   private int orderCount50More;// 返利超过50元的订单数量
   private Integer orderCount100More;// 返利超过100元的订单数量
   private int weiQuanOrderCount;// 维权订单数量
   private BigDecimal weiQuanOrderFanAmount;// 维权订单返还的金额
   private int safeOrderCount;// 安全订单数量
   private Integer less10OrderCount;//付款金额少于10块的订单数量
   public Integer getLess10OrderCount() {
      return less10OrderCount;
   }
   public void setLess10OrderCount(Integer less10OrderCount) {
      this.less10OrderCount = less10OrderCount;
   }
   public ExtractOrderStatisticDTO(int orderCount50More, int weiQuanOrderCount, BigDecimal weiQuanOrderFanAmount,
         int safeOrderCount,Integer less10OrderCount) {
      this.orderCount50More = orderCount50More;
      this.weiQuanOrderCount = weiQuanOrderCount;
      this.weiQuanOrderFanAmount = weiQuanOrderFanAmount;
      this.safeOrderCount = safeOrderCount;
      this.less10OrderCount=less10OrderCount;
   }
   public ExtractOrderStatisticDTO() {
   }
   public int getOrderCount50More() {
      return orderCount50More;
   }
   public void setOrderCount50More(int orderCount50More) {
      this.orderCount50More = orderCount50More;
   }
   public int getWeiQuanOrderCount() {
      return weiQuanOrderCount;
   }
   public void setWeiQuanOrderCount(int weiQuanOrderCount) {
      this.weiQuanOrderCount = weiQuanOrderCount;
   }
   public BigDecimal getWeiQuanOrderFanAmount() {
      return weiQuanOrderFanAmount;
   }
   public void setWeiQuanOrderFanAmount(BigDecimal weiQuanOrderFanAmount) {
      this.weiQuanOrderFanAmount = weiQuanOrderFanAmount;
   }
   public int getSafeOrderCount() {
      return safeOrderCount;
   }
   public void setSafeOrderCount(int safeOrderCount) {
      this.safeOrderCount = safeOrderCount;
   }
   public Integer getOrderCount100More() {
      return orderCount100More;
   }
   public void setOrderCount100More(Integer orderCount100More) {
      this.orderCount100More = orderCount100More;
   }
}