Files
2024-09-21 14:09:23 +08:00

26 lines
446 B
Go

//
// Code generated by go-jet DO NOT EDIT.
//
// WARNING: Changes to this file may cause incorrect behavior
// and will be lost if the code is regenerated
//
package model
import (
"time"
)
type ChannelMessages struct {
ID int64 `sql:"primary_key"`
ChannelID int64
UUID int64
Content *string
Media string
PublishedAt time.Time
CreatedAt time.Time
GroupID int64
Published bool
Favorite bool
}