feat(model): add initial entity models for restaurant system

This commit is contained in:
2026-06-17 01:39:03 +03:30
parent efc439f926
commit aea9834d13
4 changed files with 58 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
package dev.model;
public class OrderDetail {
private int id;
private int orderId;
private int menuItemId;
private int quantity;
private double price;
}