gongchunyi
18 小时以前 bfc816fe3757d7c0b1f95a18e8ec9fbc3e717ae1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}