package com.matrix.system.app.vo;
|
|
import io.swagger.annotations.ApiModel;
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.math.BigDecimal;
|
|
/**
|
* @author wzy
|
* @date 2020-12-23
|
**/
|
@ApiModel(value = "OrderDetailAchieveItemVo", description = "订单明细业绩返回参数类")
|
public class OrderDetailAchieveItemVo {
|
|
@ApiModelProperty(value = "姓名")
|
private String name;
|
|
@ApiModelProperty(value = "业绩")
|
private BigDecimal achieve;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public BigDecimal getAchieve() {
|
return achieve;
|
}
|
|
public void setAchieve(BigDecimal achieve) {
|
this.achieve = achieve;
|
}
|
}
|