forked from codesquad-members-2023/kiosk-max
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
♻️ refactor(Orders) #71: 데이터 타입, 네이밍 수정
- Loading branch information
1 parent
05c5ff4
commit afffd0c
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
7 changes: 5 additions & 2 deletions
7
be/src/main/java/com/kiosk/api/order/domain/entity/Orders.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
package com.kiosk.api.order.domain.entity; | ||
|
||
import java.time.LocalDateTime; | ||
import lombok.Builder; | ||
import lombok.Getter; | ||
|
||
@Getter | ||
@Builder | ||
public class Orders { | ||
private Long orderId; | ||
private Long orderNumber; | ||
private LocalDateTime orderTime; | ||
private String orderDateTime; | ||
} |