商品出入库统计

This commit is contained in:
Tankaikai
2025-03-18 10:19:22 +08:00
parent 1a297840bd
commit 3d37116264
6 changed files with 40 additions and 13 deletions

View File

@@ -95,4 +95,9 @@ public class ProductStockFlow implements Serializable {
* 备注
*/
private String remark;
/**
* 商品订单编号
*/
@Column(ignore = true)
private String orderNo;
}

View File

@@ -1,5 +1,6 @@
package com.czg.product.param;
import com.alibaba.fastjson2.annotation.JSONField;
import lombok.Data;
import java.io.Serial;
@@ -27,4 +28,9 @@ public class ProductStockFlowParam implements Serializable {
* 出入库名目 win-in:手动增加 order-in:退货 loss-out:手动减少 order-out:销售量 damage-out:报损
*/
private String inOutItem;
/**
* 门店id
*/
@JSONField(serialize = false)
private Long shopId;
}