Skip to content

Commit

Permalink
Feat: OrderEntity 구현
Browse files Browse the repository at this point in the history
  • Loading branch information
Louie-03 committed Apr 26, 2022
1 parent 6543cb6 commit 5ff762d
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions BE/src/main/java/sidedish/com/repository/entity/OrderEntity.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
package sidedish.com.repository.entity;

import org.springframework.data.annotation.Id;
import org.springframework.data.annotation.PersistenceConstructor;
import org.springframework.data.relational.core.mapping.Table;

@Table("ORDERS")
public class OrderEntity {

@Id
private Long id;
private final Long productId;
private final long totalPrice;
private final long count;
private final long deliveryPrice;

@PersistenceConstructor
public OrderEntity(Long productId, long totalPrice, long count,
long deliveryPrice) {
this.productId = productId;
this.totalPrice = totalPrice;
this.count = count;
this.deliveryPrice = deliveryPrice;
}

public Long getId() {
return id;
}
}

0 comments on commit 5ff762d

Please sign in to comment.