Compare commits

...

2 Commits

Author SHA1 Message Date
xuyuncong
69701b5341 Merge branch 'repair' 2025-11-24 17:35:18 +08:00
xuyuncong
c39663d616 更新 2025-11-24 17:34:25 +08:00

View File

@ -0,0 +1,45 @@
package cn.iocoder.yudao.module.base.service.impl;
import lombok.Data;
import java.math.BigDecimal;
/**
* @ClassName InventoryStatisticsVO
* @Description : 库存统计 VO
* @Author
* @Date 2025/11/24 17:30
* @Version 1.0.0
*/
@Data
public class InventoryStatisticsVO {
/**
* 期初库存数量
*/
private BigDecimal beginningStock;
/**
* 期初库存金额
*/
private BigDecimal beginningAmount;
/**
* 当期购进数量
*/
private BigDecimal currentPurchaseStock;
/**
* 当期购进金额
*/
private BigDecimal currentPurchaseAmount;
/**
* 当期领出数量
*/
private BigDecimal currentPickingStock;
/**
* 当期领出金额
*/
private BigDecimal currentPickingAmount;
}