yujian
2019-06-24 bd331a582851cffcce54316e677e23760de4f384
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
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;
    }
 
}