|
|
@@ -0,0 +1,92 @@
|
|
|
+export interface ExtendVO {
|
|
|
+ productId?: string | number;
|
|
|
+ promotionTitle?: string;
|
|
|
+ invoiceName?: string;
|
|
|
+ invoiceType?: string | number;
|
|
|
+ specificationsCode?: string;
|
|
|
+ barCoding?: string;
|
|
|
+ productDescription?: string;
|
|
|
+ productWeight?: string | number;
|
|
|
+ weightUnit?: string;
|
|
|
+ productVolume?: string | number;
|
|
|
+ volumeUnit?: string;
|
|
|
+ afterSalesService?: string;
|
|
|
+ serviceGuarantee?: string;
|
|
|
+ isInstallService?: string | number;
|
|
|
+ installAmount?: string | number;
|
|
|
+ distributionPrice?: string | number;
|
|
|
+ standardSizes?: string;
|
|
|
+ gramWeight?: string | number;
|
|
|
+ opacity?: string | number;
|
|
|
+ isCustomize?: string | number;
|
|
|
+ customDescription?: string;
|
|
|
+ productProfit?: string | number;
|
|
|
+ reportRequire?: string;
|
|
|
+ reviewComments?: string;
|
|
|
+ supplierNo?: string;
|
|
|
+ pushStatus?: string | number;
|
|
|
+ dataSource?: string;
|
|
|
+ invoiceSpecs?: string;
|
|
|
+ increment?: string | number;
|
|
|
+ purchaseNo?: string;
|
|
|
+ purchaseName?: string;
|
|
|
+ supplierName?: string;
|
|
|
+ purchaseManagerNo?: string;
|
|
|
+ purchaseManagerName?: string;
|
|
|
+ referenceLink?: string;
|
|
|
+ salesVolume?: string | number;
|
|
|
+ deliveryTime?: string;
|
|
|
+ pitTime?: string;
|
|
|
+ createSupplier?: string;
|
|
|
+ otherInfo?: string;
|
|
|
+ platformCode?: string;
|
|
|
+ remark?: string;
|
|
|
+}
|
|
|
+
|
|
|
+export interface ExtendForm extends ExtendVO {}
|
|
|
+
|
|
|
+export interface ExtendQuery {
|
|
|
+ pageNum?: number;
|
|
|
+ pageSize?: number;
|
|
|
+ promotionTitle?: string;
|
|
|
+ invoiceName?: string;
|
|
|
+ invoiceType?: string | number;
|
|
|
+ specificationsCode?: string;
|
|
|
+ barCoding?: string;
|
|
|
+ productDescription?: string;
|
|
|
+ productWeight?: string | number;
|
|
|
+ weightUnit?: string;
|
|
|
+ productVolume?: string | number;
|
|
|
+ volumeUnit?: string;
|
|
|
+ afterSalesService?: string;
|
|
|
+ serviceGuarantee?: string;
|
|
|
+ isInstallService?: string | number;
|
|
|
+ installAmount?: string | number;
|
|
|
+ distributionPrice?: string | number;
|
|
|
+ standardSizes?: string;
|
|
|
+ gramWeight?: string | number;
|
|
|
+ opacity?: string | number;
|
|
|
+ isCustomize?: string | number;
|
|
|
+ customDescription?: string;
|
|
|
+ productProfit?: string | number;
|
|
|
+ reportRequire?: string;
|
|
|
+ reviewComments?: string;
|
|
|
+ supplierNo?: string;
|
|
|
+ pushStatus?: string | number;
|
|
|
+ dataSource?: string;
|
|
|
+ invoiceSpecs?: string;
|
|
|
+ increment?: string | number;
|
|
|
+ purchaseNo?: string;
|
|
|
+ purchaseName?: string;
|
|
|
+ supplierName?: string;
|
|
|
+ purchaseManagerNo?: string;
|
|
|
+ purchaseManagerName?: string;
|
|
|
+ referenceLink?: string;
|
|
|
+ salesVolume?: string | number;
|
|
|
+ deliveryTime?: string;
|
|
|
+ pitTime?: string;
|
|
|
+ createSupplier?: string;
|
|
|
+ otherInfo?: string;
|
|
|
+ platformCode?: string;
|
|
|
+ params?: Record<string, any>;
|
|
|
+}
|