yujian
2019-02-14 5eadf208bc38b0002f127217e479aa5353228ec8
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
package org.fanli.facade.order.dto.order;
 
import java.math.BigDecimal;
 
public class OrderVital {
 
    private long auctionId;// 商品ID。多个中任选一个
    private String orderId; // 订单编号
    private BigDecimal money;// 订单总金额
    private BigDecimal yongjin; // 总佣金
    private BigDecimal hb;
 
    public BigDecimal getHb() {
        return hb;
    }
 
    public void setHb(BigDecimal hb) {
        this.hb = hb;
    }
 
    public long getAuctionId() {
        return auctionId;
    }
 
    public void setAuctionId(long auctionId) {
        this.auctionId = auctionId;
    }
 
    public String getOrderId() {
        return orderId;
    }
 
    public void setOrderId(String orderId) {
        this.orderId = orderId;
    }
 
    public BigDecimal getMoney() {
        return money;
    }
 
    public void setMoney(BigDecimal money) {
        this.money = money;
    }
 
    public BigDecimal getYongjin() {
        return yongjin;
    }
 
    public void setYongjin(BigDecimal yongjin) {
        this.yongjin = yongjin;
    }
 
}