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;
|
}
|
|
}
|