package com.ruoyi.purchase.dto; import io.swagger.annotations.ApiModel; import io.swagger.annotations.ApiModelProperty; import lombok.Data; import java.math.BigDecimal; @Data @ApiModel("采购业务数据统计") public class ProcurementBusinessSummaryStatisticsDto { @ApiModelProperty("采购总额") private BigDecimal purchaseTotalAmount; @ApiModelProperty("商品品类(商品分类)") private Integer productCategoryCount; @ApiModelProperty("退货总额") private BigDecimal returnTotalAmount; }