puzhibing
2023-06-30 f58cca364b731eac2d60a440ffaa804be3cd43fd
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
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;
    }
}