@jagota/interfaces 1.3.30 → 1.3.32
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.
package/package.json
CHANGED
|
@@ -43,9 +43,15 @@ export interface IBiddingCustomerInfo extends IBiddingCustCodeAndName {
|
|
|
43
43
|
win?: number;
|
|
44
44
|
loss?: number;
|
|
45
45
|
}
|
|
46
|
-
export interface
|
|
46
|
+
export interface IBiddingUploadMarketList {
|
|
47
47
|
custProductCode: string;
|
|
48
48
|
custProductName: string;
|
|
49
|
+
}
|
|
50
|
+
export interface IBiddingUploadMarketListPayload {
|
|
51
|
+
custCode: string;
|
|
52
|
+
list: IBiddingUploadMarketList[];
|
|
53
|
+
}
|
|
54
|
+
export interface IBiddingCustomerProductList extends IBiddingUploadMarketList {
|
|
49
55
|
seq: number;
|
|
50
56
|
}
|
|
51
57
|
export interface IBiddingProductList extends IBiddingCustomerProductList {
|
|
@@ -233,5 +239,5 @@ export interface IBiddingCustomerHistoryResponse extends IBaseResponse {
|
|
|
233
239
|
data: IBiddingCustomerHistory[];
|
|
234
240
|
}
|
|
235
241
|
export interface IProductWinLossHistory extends IBiddingPeriodDate, IWinLoss {
|
|
236
|
-
|
|
242
|
+
price: number;
|
|
237
243
|
}
|