qq_bot/service/kw/model.go
2024-10-20 15:47:00 +08:00

11 lines
309 B
Go

package kw
type Kw struct {
ID int64 `json:"id" db:"id"`
Kw string `json:"kw" db:"kw"`
Reply string `json:"reply" db:"reply"`
GroupID string `json:"group_id" db:"group_id"`
CreatedBy string `json:"created_by" db:"created_by"`
CreatedAt string `json:"created_at" db:"created_at"`
}