jyy
2021-01-26 ab2879bbcb846256cc182198b9c04e50fbc276c1
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
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;
    }
}