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