@be-link/ecommerce-plan-allocation-service-node-sdk 0.0.44 → 0.0.45
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -199,7 +199,15 @@ export declare namespace PurchaseOrderTypes {
|
|
|
199
199
|
status: ENUM.PURCHASE_ORDER_ENUM.STATUS;
|
|
200
200
|
}
|
|
201
201
|
/** 采购单明细列表项 */
|
|
202
|
-
interface DetailItem extends Entity.
|
|
202
|
+
interface DetailItem extends Entity.PurchaseOrderDetail {
|
|
203
|
+
productName: string;
|
|
204
|
+
productImage: string;
|
|
205
|
+
imgList: string[];
|
|
206
|
+
specName: string;
|
|
207
|
+
storageMethod: string;
|
|
208
|
+
classification: string;
|
|
209
|
+
supplierName: string;
|
|
210
|
+
destinationName: string;
|
|
203
211
|
}
|
|
204
212
|
/** 查询采购单详情响应(含明细列表) */
|
|
205
213
|
interface GetDetail {
|