@jagota/interfaces 1.3.8 → 1.3.9
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
|
@@ -93,6 +93,12 @@ export interface ISetBiddingPriceHPayload extends IBiddingPricelistPayload{
|
|
|
93
93
|
tenderDay: number;
|
|
94
94
|
}
|
|
95
95
|
|
|
96
|
+
export interface ISetBiddingPriceHResponse extends IBaseResponse {
|
|
97
|
+
data: {
|
|
98
|
+
RECORD_ID: number;
|
|
99
|
+
}
|
|
100
|
+
}
|
|
101
|
+
|
|
96
102
|
export interface ISetBiddingPriceDPayload {
|
|
97
103
|
recordID: number;
|
|
98
104
|
custProductCode: string;
|
|
@@ -100,6 +106,12 @@ export interface ISetBiddingPriceDPayload {
|
|
|
100
106
|
price?: number;
|
|
101
107
|
}
|
|
102
108
|
|
|
109
|
+
export interface ISetBiddingPriceDResponse extends IBaseResponse {
|
|
110
|
+
data: {
|
|
111
|
+
PRICE: number;
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
103
115
|
export interface IGetBiddingPriceListResponse extends IBaseResponse {
|
|
104
116
|
data: IBiddingPricelist[];
|
|
105
117
|
}
|
|
@@ -190,4 +202,26 @@ export interface ISetLossReason {
|
|
|
190
202
|
}
|
|
191
203
|
export interface IBiddingReasonByDetailRidResponse extends IBaseResponse {
|
|
192
204
|
data: IBiddingReason[];
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
export interface IBiddingCustomer {
|
|
208
|
+
custCode: string;
|
|
209
|
+
custName: string;
|
|
210
|
+
startDate: Date;
|
|
211
|
+
submissionDay: number;
|
|
212
|
+
tenderDay: number;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export interface IBiddingCustomerWithPeriod extends IBiddingCustomer {
|
|
216
|
+
biddingTypeName: string;
|
|
217
|
+
}
|
|
218
|
+
export interface IBiddingCustomerWithPeriodResponse extends IBaseResponse {
|
|
219
|
+
data: IBiddingCustomerWithPeriod[];
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
export interface IBiddingCustomerHistory extends IBiddingCustomer{
|
|
223
|
+
recordId: number;
|
|
224
|
+
}
|
|
225
|
+
export interface IBiddingCustomerHistoryResponse extends IBaseResponse {
|
|
226
|
+
data: IBiddingCustomerHistory[];
|
|
193
227
|
}
|