feat(api/wms/instockPrint): 添加入库打印相关字段

- 新增推荐库位 ID、入库状态、实际入库时间等字段
- 在 InstockPrint、InstockPrintForm 和 InstockPrintQuery 接口中添加新字段
- 为新字段添加相应的类型注释和文档说明
master^2
zangch@mesnac.com 5 days ago
parent f38058d8db
commit 0af0b3aa1f

@ -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;
/**
*
*/

Loading…
Cancel
Save