[hw-8] add: comment service

This commit is contained in:
3ybacTuK
2025-07-26 23:47:18 +03:00
parent 6420eaf3d7
commit 6e0d90a6d5
29 changed files with 1249 additions and 725 deletions

View File

@@ -1,9 +1,11 @@
package entity
import "time"
type Comment struct {
ID int64
UserID int64
SKU int64
CreatedAt string
CreatedAt time.Time
Text string
}