订单生成 库存消耗记录 并记录销量

This commit is contained in:
2024-08-28 15:45:21 +08:00
parent fcff40f72b
commit 09c6cd178a
4 changed files with 13 additions and 13 deletions

View File

@@ -9,12 +9,15 @@ import javax.persistence.Id;
public class StockCountDTO {
private String shopId;
@Id
private Long skuId;
private Long proId;
private String proName;
private Integer isStock;
private String skuName;
private String unitName;
// 消耗数
private Integer stockCount;
// 当前库存
private Integer stockNumber;
private String specSnap;
}