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;
|
}
|