package com.stylefeng.guns.modular.system.controller.resp;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import java.io.Serializable;
|
import java.math.BigDecimal;
|
|
public class PerformanceTableResp implements Serializable {
|
|
|
@ApiModelProperty(value = "时间")
|
private String monthTime;
|
|
@ApiModelProperty(value = "姓名")
|
private String userName;
|
|
@ApiModelProperty(value = "单量/收入/佣金")
|
private BigDecimal amount;
|
|
public String getMonthTime() {
|
return monthTime;
|
}
|
|
public void setMonthTime(String monthTime) {
|
this.monthTime = monthTime;
|
}
|
|
public String getUserName() {
|
return userName;
|
}
|
|
public void setUserName(String userName) {
|
this.userName = userName;
|
}
|
|
public BigDecimal getAmount() {
|
return amount;
|
}
|
|
public void setAmount(BigDecimal amount) {
|
this.amount = amount;
|
}
|
}
|