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
package com.ruoyi.procurementrecord.dto;
 
import lombok.Data;
 
import java.math.BigDecimal;
 
/**
 * 存货核算信息Dto-资产报表
 */
@Data
public class InventoryInformationDto {
    /**
     * 总库存数量
     */
    private Integer totalInventoryCount;
    /**
     * 总库存金额
     */
    private BigDecimal totalInventoryValue;
    /**
     * 库存变动数量
     */
    private Integer inventoryChangeCount;
    /**
     * 库存变动金额
     */
    private BigDecimal inventoryChangeValue;
}