Commit d90b2d7f by 张珈源

feat(kcpd): 添加库存盘点模型中的产品编号字段

- 在InventoryItem接口中新增cpbh字段用于存储产品编号
- 该字段支持字符串类型的数据存储
- 为后续产品追溯功能提供基础数据结构支撑
parent b3931c15
...@@ -222,6 +222,7 @@ export interface InventoryFilterParams { ...@@ -222,6 +222,7 @@ export interface InventoryFilterParams {
export interface InventoryItem { export interface InventoryItem {
ywzz: string; ywzz: string;
id: string; id: string;
cpbh: string;
cpmc: string; cpmc: string;
cplx: string; cplx: string;
ck: string; ck: string;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment