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;// 安全订单数量
|
|
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;
|
}
|
|
public Integer getOrderCount100More() {
|
return orderCount100More;
|
}
|
|
public void setOrderCount100More(Integer orderCount100More) {
|
this.orderCount100More = orderCount100More;
|
}
|
|
}
|