61 lines
2.6 KiB
TypeScript
61 lines
2.6 KiB
TypeScript
/**
|
|
* Generated by orval v7.21.0 🍺
|
|
* Do not edit manually.
|
|
* Negodata Api Server
|
|
* OpenAPI spec version: 0.1.0
|
|
*/
|
|
import type { QuotationType } from './quotationType';
|
|
import type { QuotationStatus } from './quotationStatus';
|
|
import type { QuotationDataManagerName } from './quotationDataManagerName';
|
|
import type { QuotationDataManagerEmail } from './quotationDataManagerEmail';
|
|
import type { QuotationDataManagerContactNumber } from './quotationDataManagerContactNumber';
|
|
import type { QuotationDataMemo } from './quotationDataMemo';
|
|
import type { QuotationDataMdPrice } from './quotationDataMdPrice';
|
|
import type { QuotationDataPreferredSpYn } from './quotationDataPreferredSpYn';
|
|
import type { QuotationDataPreferredSpId } from './quotationDataPreferredSpId';
|
|
import type { QuotationDataPreferredSpName } from './quotationDataPreferredSpName';
|
|
import type { QuotationDataEqualBidYn } from './quotationDataEqualBidYn';
|
|
import type { QuotationDataEqualBidData } from './quotationDataEqualBidData';
|
|
import type { QuotationDataCloseReason } from './quotationDataCloseReason';
|
|
import type { QuotationDataMidAction } from './quotationDataMidAction';
|
|
import type { QuotationDataOverAction } from './quotationDataOverAction';
|
|
import type { QuotationDataItemId } from './quotationDataItemId';
|
|
import type { QuotationDataItemName } from './quotationDataItemName';
|
|
import type { QuotationDataCreatorName } from './quotationDataCreatorName';
|
|
import type { QuotationDataCreatedAt } from './quotationDataCreatedAt';
|
|
import type { QuotationDataUpdatedAt } from './quotationDataUpdatedAt';
|
|
|
|
export interface QuotationData {
|
|
qt_id: string;
|
|
user_id: string;
|
|
qt_setting_id: string;
|
|
version_id: string;
|
|
name: string;
|
|
number: string;
|
|
type: QuotationType;
|
|
round?: number;
|
|
status: QuotationStatus;
|
|
start_time: string;
|
|
end_time: string;
|
|
manager_name?: QuotationDataManagerName;
|
|
manager_email?: QuotationDataManagerEmail;
|
|
manager_contact_number?: QuotationDataManagerContactNumber;
|
|
memo?: QuotationDataMemo;
|
|
md_price?: QuotationDataMdPrice;
|
|
iteration?: number;
|
|
preferred_sp_yn?: QuotationDataPreferredSpYn;
|
|
preferred_sp_id?: QuotationDataPreferredSpId;
|
|
preferred_sp_name?: QuotationDataPreferredSpName;
|
|
equal_bid_yn?: QuotationDataEqualBidYn;
|
|
equal_bid_data?: QuotationDataEqualBidData;
|
|
close_reason?: QuotationDataCloseReason;
|
|
mid_action?: QuotationDataMidAction;
|
|
over_action?: QuotationDataOverAction;
|
|
participation_count?: number;
|
|
item_id?: QuotationDataItemId;
|
|
item_name?: QuotationDataItemName;
|
|
creator_name?: QuotationDataCreatorName;
|
|
created_at?: QuotationDataCreatedAt;
|
|
updated_at?: QuotationDataUpdatedAt;
|
|
}
|