Skip to content

Commit b242df3

Browse files
authored
Update order.go
1 parent 9b29138 commit b242df3

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

order-service/models/order.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
// models/order.go
21
package models
32

43
import (
@@ -11,5 +10,5 @@ type Order struct {
1110
ProductID uint `json:"product_id"`
1211
Quantity int `json:"quantity"`
1312
TotalAmount float64 `json:"total_amount"`
14-
Status string `json:"status"` // e.g., "Pending", "Shipped", "Delivered"
13+
Status string `json:"status"`
1514
}

0 commit comments

Comments
 (0)