@jagota/interfaces 1.3.3 → 1.3.6
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
|
@@ -155,6 +155,7 @@ export interface IBiddingDetail {
|
|
|
155
155
|
productName: string;
|
|
156
156
|
unit: string;
|
|
157
157
|
price: number;
|
|
158
|
+
winLoss: string;
|
|
158
159
|
}
|
|
159
160
|
export interface IBiddingDetailResponse extends IBaseResponse {
|
|
160
161
|
data: IBiddingDetail[];
|
|
@@ -166,4 +167,19 @@ export interface IBiddingReason {
|
|
|
166
167
|
}
|
|
167
168
|
export interface IBiddingReasonResponse extends IBaseResponse {
|
|
168
169
|
data: IBiddingReason[];
|
|
170
|
+
}
|
|
171
|
+
export interface IBiddingWinLoss {
|
|
172
|
+
recordId: number;
|
|
173
|
+
winLoss: string;
|
|
174
|
+
}
|
|
175
|
+
export interface IBiddingWinLossResponse extends IBaseResponse {
|
|
176
|
+
data: IBiddingWinLoss;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
export interface ISetLossReason {
|
|
180
|
+
biddingDetailRid: number;
|
|
181
|
+
biddingReasonRid: number;
|
|
182
|
+
}
|
|
183
|
+
export interface IBiddingReasonByDetailRidResponse extends IBaseResponse {
|
|
184
|
+
data: IBiddingReason[];
|
|
169
185
|
}
|