package com.yeshi.fanli.dto;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
/**
|
* 商品分类dto
|
*
|
* @author Administrator
|
*
|
*/
|
public class GoodsClassDTO implements Serializable {
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
|
private String id;
|
private String name;
|
private BigDecimal selfComm; // plus订单类目佣金比例-自营
|
private BigDecimal popComm; // plus订单类目佣金比例-pop
|
|
public String getId() {
|
return id;
|
}
|
|
public void setId(String id) {
|
this.id = id;
|
}
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public BigDecimal getSelfComm() {
|
return selfComm;
|
}
|
|
public void setSelfComm(BigDecimal selfComm) {
|
this.selfComm = selfComm;
|
}
|
|
public BigDecimal getPopComm() {
|
return popComm;
|
}
|
|
public void setPopComm(BigDecimal popComm) {
|
this.popComm = popComm;
|
}
|
|
}
|