Files
tg_exporter/database/telegram_resource/public/model/channel_messages.go
Rogee 399dbe4264 fix
2024-09-02 19:45:16 +08:00

24 lines
410 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
}