Files
web_ylsa/api_file/model/note.go
2025-07-11 16:54:11 +08:00

10 lines
145 B
Go

package model
import "gorm.io/gorm"
type UserNotes struct {
Username string `json:"username"`
Content string `json:"content"`
gorm.Model
}