yujian
2020-06-29 ec60e757d358636dcac1589c44a66f3e276fe58c
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
package com.yeshi.fanli.vo.order;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
import com.google.gson.annotations.Expose;
 
/**
 * 团队订单信息
 * @author Administrator
 *
 */
/**
 * @author Administrator
 *
 */
public class TeamDividentsVO implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @Expose
    private Integer sourceType; // 订单平台类型
    @Expose
    private String orderNo; // 订单号
    @Expose
    private BigDecimal subsidy; // 补贴
    @Expose
    private BigDecimal dividents; // 分红
 
    public Integer getSourceType() {
        return sourceType;
    }
 
    public void setSourceType(Integer sourceType) {
        this.sourceType = sourceType;
    }
 
    public String getOrderNo() {
        return orderNo;
    }
 
    public void setOrderNo(String orderNo) {
        this.orderNo = orderNo;
    }
 
    public BigDecimal getSubsidy() {
        return subsidy;
    }
 
    public void setSubsidy(BigDecimal subsidy) {
        this.subsidy = subsidy;
    }
 
    public BigDecimal getDividents() {
        return dividents;
    }
 
    public void setDividents(BigDecimal dividents) {
        this.dividents = dividents;
    }
 
}