Skip to content

Commit

Permalink
[Chore] [GGFE-243] 확성기, 아이템 상태 리터럴 타입으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
PHJoon committed Sep 11, 2023
1 parent ef21014 commit 6069d70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions types/admin/adminReceiptType.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export interface Ireceipt {
itemPrice: number;
purchaserIntraId: string;
ownerIntraId: string;
itemStatusType: string;
itemStatusType: 'BEFORE' | 'WAITING' | 'USING' | 'USED' | 'DELETED';
}

export interface IreceiptTable {
Expand All @@ -18,7 +18,7 @@ export interface Imegaphone {
megaphoneId: number;
content: string;
usedAt: Date;
status: string;
status: '사용 전' | '사용 대기' | '사용 중' | '사용 완료' | '삭제';
intraId: string;
}

Expand Down

0 comments on commit 6069d70

Please sign in to comment.