11 lines
309 B
Go
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"`
|
|
}
|