Compare commits
2 Commits
040d73969e
...
69701b5341
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
69701b5341 | ||
|
|
c39663d616 |
@ -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;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user