putaway.ts 459 B

1234567891011121314151617181920212223242526272829
  1. /**
  2. * 批量上架
  3. */
  4. export interface batchPutawayType {
  5. container?: string;
  6. location?: string;
  7. quantity?: number;
  8. taskLineNo?: string;
  9. taskNo?: string;
  10. warehouse?: string;
  11. [property: string]: any;
  12. }
  13. /**
  14. * 上架任务列表
  15. */
  16. export interface getWaitPutawayInfoType {
  17. container: string;
  18. warehouse: string;
  19. }
  20. /**
  21. * 上架任务列表
  22. */
  23. export interface getWaitPutawayInfoNewType {
  24. containerId: string;
  25. warehouseId: string;
  26. }