| 1234567891011121314151617181920212223242526272829 |
- /**
- * 批量上架
- */
- export interface batchPutawayType {
- container?: string;
- location?: string;
- quantity?: number;
- taskLineNo?: string;
- taskNo?: string;
- warehouse?: string;
- [property: string]: any;
- }
- /**
- * 上架任务列表
- */
- export interface getWaitPutawayInfoType {
- container: string;
- warehouse: string;
- }
- /**
- * 上架任务列表
- */
- export interface getWaitPutawayInfoNewType {
- containerId: string;
- warehouseId: string;
- }
|