From 0af0b3aa1f543d94b6d9deae56438c8f0f01e1a5 Mon Sep 17 00:00:00 2001 From: "zangch@mesnac.com" Date: Wed, 13 Aug 2025 09:29:57 +0800 Subject: [PATCH] =?UTF-8?q?feat(api/wms/instockPrint):=20=E6=B7=BB?= =?UTF-8?q?=E5=8A=A0=E5=85=A5=E5=BA=93=E6=89=93=E5=8D=B0=E7=9B=B8=E5=85=B3?= =?UTF-8?q?=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 新增推荐库位 ID、入库状态、实际入库时间等字段 - 在 InstockPrint、InstockPrintForm 和 InstockPrintQuery 接口中添加新字段 - 为新字段添加相应的类型注释和文档说明 --- src/api/wms/instockPrint/types.ts | 48 +++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) diff --git a/src/api/wms/instockPrint/types.ts b/src/api/wms/instockPrint/types.ts index f182ff1..cc9239d 100644 --- a/src/api/wms/instockPrint/types.ts +++ b/src/api/wms/instockPrint/types.ts @@ -61,6 +61,22 @@ export interface InstockPrintVO { materialCategoryName: string; + /** + * 推荐库位id + */ + locationId: string | number; + + /** + * 入库状态(0-待入库,1-已入库,2-入库中) + */ + inboundStatus: string; + + /** + * 实际入库时间 + */ + actualInboundTime: string; + + } export interface InstockPrintForm extends BaseEntity { @@ -126,6 +142,21 @@ export interface InstockPrintForm extends BaseEntity { materialCategoryName?: string; + /** + * 推荐库位id + */ + locationId?: string | number; + + /** + * 入库状态(0-待入库,1-已入库,2-入库中) + */ + inboundStatus?: string; + + /** + * 实际入库时间 + */ + actualInboundTime?: string; + } export interface InstockPrintQuery extends PageQuery { @@ -192,6 +223,23 @@ export interface InstockPrintQuery extends PageQuery { materialCategoryName?: string; + + /** + * 推荐库位id + */ + locationId?: string | number; + + /** + * 入库状态(0-待入库,1-已入库,2-入库中) + */ + inboundStatus?: string; + + /** + * 实际入库时间 + */ + actualInboundTime?: string; + + /** * 日期范围参数 */