wanshenmean
2026-02-09 ae9517420d848e215a9eb807270d5ef6fbe92ae9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/**
 * 仓库信息
 */
export interface WarehouseInfo {
  Id: string;
  WarehouseCode: string;
  WarehouseName: string;
  WarehouseType?: string;
  Enable: number;
  CreateDate?: string;
  Creator?: string;
}
 
/**
 * 货位信息
 */
export interface LocationInfo {
  Id: string;
  LocationCode: string;
  LocationName: string;
  WarehouseCode: string;
  WarehouseName?: string;
  LocationType?: string;
  LocationStatus?: number;
  Enable: number;
  CreateDate?: string;
}
 
/**
 * 物料信息
 */
export interface MaterielInfo {
  Id: string;
  MaterielCode: string;
  MaterielName: string;
  MaterielType?: string;
  Specification?: string;
  Unit?: string;
  Enable: number;
  CreateDate?: string;
}
 
/**
 * 入库单信息
 */
export interface InboundOrderInfo {
  Id: string;
  InboundOrderNo: string;
  InboundType?: string;
  WarehouseCode: string;
  WarehouseName?: string;
  OrderStatus?: number;
  CreateDate?: string;
  Creator?: string;
}
 
/**
 * 出库单信息
 */
export interface OutboundOrderInfo {
  Id: string;
  OutboundOrderNo: string;
  OutboundType?: string;
  WarehouseCode: string;
  WarehouseName?: string;
  OrderStatus?: number;
  CreateDate?: string;
  Creator?: string;
}
 
/**
 * 库存信息
 */
export interface StockInfo {
  Id: string;
  WarehouseCode: string;
  WarehouseName?: string;
  LocationCode: string;
  MaterielCode: string;
  MaterielName?: string;
  Quantity: number;
  AvailableQuantity: number;
  LockedQuantity: number;
  CreateDate?: string;
}
 
/**
 * 盘点单信息
 */
export interface CheckOrderInfo {
  Id: string;
  CheckOrderNo: string;
  WarehouseCode: string;
  WarehouseName?: string;
  CheckStatus?: number;
  CreateDate?: string;
  Creator?: string;
}
 
/**
 * 任务信息
 */
export interface TaskInfo {
  Id: string;
  TaskNo: string;
  TaskType?: string;
  TaskStatus?: number;
  WarehouseCode: string;
  CreateDate?: string;
  Creator?: string;
}