diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-08 10:29:19 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-08 10:29:19 +0000 |
| commit | f93493f68c9f368e10f1c3379f1c1384068e3b14 (patch) | |
| tree | a9dada58741750fa7ca6e04b210443ad99a6bccc /db/schema/bidding.ts | |
| parent | e832a508e1b3c531fb3e1b9761e18e1b55e3d76a (diff) | |
(대표님, 최겸) rfqLast, bidding, prequote
Diffstat (limited to 'db/schema/bidding.ts')
| -rw-r--r-- | db/schema/bidding.ts | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/db/schema/bidding.ts b/db/schema/bidding.ts index 710fb60d..9c623232 100644 --- a/db/schema/bidding.ts +++ b/db/schema/bidding.ts @@ -296,11 +296,14 @@ export const biddingCompanies = pgTable('bidding_companies', { preQuoteSubmittedAt: timestamp('pre_quote_submitted_at'), isPreQuoteSelected: boolean('is_pre_quote_selected').default(false), // 본입찰 대상 선정 여부 - // 본입찰 정보 + // 본입찰 정보 + isBiddingInvited: boolean('is_bidding_invited').default(false), // 본입찰 초대 여부 + isBiddingParticipated: boolean('is_bidding_participated'),//본입찰 참여 여부 finalQuoteAmount: decimal('final_quote_amount', { precision: 15, scale: 2 }), finalQuoteSubmittedAt: timestamp('final_quote_submitted_at'), - isWinner: boolean('is_winner').default(false), // 낙찰 여부 + isWinner: boolean('is_winner'), // 낙찰 여부 isAttendingMeeting: boolean('is_attending_meeting'), // 사양설명회 참석 여부 + awardRatio: decimal('award_ratio', { precision: 5, scale: 2 }), // 발주비율 // 기타 notes: text('notes'), // 특이사항 |
