Skip to content

Commit

Permalink
♻️ refactor(Orders) #71: 데이터 타입, 네이밍 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
devbattery committed Jun 28, 2023
1 parent 05c5ff4 commit afffd0c
Showing 1 changed file with 5 additions and 2 deletions.
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;
}

0 comments on commit afffd0c

Please sign in to comment.