admin
2020-05-06 24a8d17e007545f7426c48352109aa1a9c6587ee
fanli/src/main/java/com/yeshi/fanli/dto/money/ExtractOrderStatisticDTO.java
@@ -10,20 +10,33 @@
 */
public class ExtractOrderStatisticDTO {
   private int orderCount50More;// 返利超过超过50元的订单数量
   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) {
         int safeOrderCount,Integer less10OrderCount) {
      this.orderCount50More = orderCount50More;
      this.weiQuanOrderCount = weiQuanOrderCount;
      this.weiQuanOrderFanAmount = weiQuanOrderFanAmount;
      this.safeOrderCount = safeOrderCount;
      this.less10OrderCount=less10OrderCount;
   }
   public ExtractOrderStatisticDTO() {
@@ -62,4 +75,12 @@
      this.safeOrderCount = safeOrderCount;
   }
   public Integer getOrderCount100More() {
      return orderCount100More;
   }
   public void setOrderCount100More(Integer orderCount100More) {
      this.orderCount100More = orderCount100More;
   }
}