xuhy
3 天以前 508f3e225df87e0da974424981e7782fc5ce875c
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
package com.ruoyi.system.vo;
 
import cn.afterturn.easypoi.excel.annotation.Excel;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
import java.io.Serializable;
import java.math.BigDecimal;
 
@Data
@ApiModel(value = "商品盈利明细")
public class GoodsProfitVO implements Serializable {
 
    @ApiModelProperty(value = "商品分类")
    @Excel(name = "商品分类",width = 30)
    private String typeName;
 
    @ApiModelProperty(value = "商品名称")
    @Excel(name = "商品名称",width = 30)
    private String goodsName;
 
    @ApiModelProperty(value = "商品销售数量")
    @Excel(name = "商品销售数量",width = 30)
    private Integer totalSalesCount;
 
    @ApiModelProperty(value = "商品成本")
    @Excel(name = "商品成本",width = 30,isStatistics = true)
    private BigDecimal goodsCostAmount;
 
    @ApiModelProperty(value = "商品售价")
    @Excel(name = "商品售价",width = 30,isStatistics = true)
    private BigDecimal goodsSaleAmount;
 
    @ApiModelProperty(value = "商品盈利")
    @Excel(name = "商品盈利",width = 30,isStatistics = true)
    private BigDecimal goodsProfitAmount;
}