qq_bot/handler/ticket/model.go
2024-10-25 01:39:25 +08:00

19 lines
542 B
Go

package ticket
type Ticket struct {
Id int64 `json:"id" db:"id"`
Content string `json:"content" db:"content"`
FromQQ int64 `json:"fromQQ" db:"fromQQ"`
FromGroup int64 `json:"fromGroup" db:"fromGroup"`
IsDone bool `json:"isDone" db:"isDone"`
IsDeleted bool `json:"isDeleted" db:"isDeleted"`
CreatedAt string `json:"created_at" db:"created_at"`
}
type WebTicketModel struct {
Id int64 `json:"id"`
Content string `json:"content"`
FromQQ string `json:"from"`
CreatedAt string `json:"created_at"`
}