@jagota/interfaces 1.3.17 → 1.3.19
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
|
@@ -168,6 +168,7 @@ export interface IBiddingByRid {
|
|
|
168
168
|
|
|
169
169
|
export interface IBiddingDetail {
|
|
170
170
|
recordId: number;
|
|
171
|
+
custCode: string;
|
|
171
172
|
custProductCode: string;
|
|
172
173
|
custProductName: string;
|
|
173
174
|
seq: number;
|
|
@@ -179,6 +180,7 @@ export interface IBiddingDetail {
|
|
|
179
180
|
price: number;
|
|
180
181
|
winLoss: string;
|
|
181
182
|
winLossHistory: IProductWinLossHistory[];
|
|
183
|
+
lossReasons: IBiddingReason[];
|
|
182
184
|
}
|
|
183
185
|
export interface IBiddingDetailResponse extends IBaseResponse {
|
|
184
186
|
data: IBiddingDetail[];
|