123456789101112131415161718192021 |
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- // Code generated by gorm.io/gen. DO NOT EDIT.
- package model
- const TableNameRolesLog = "roles_logs"
- // RolesLog mapped from table <roles_logs>
- type RolesLog struct {
- ID int32 `gorm:"column:id;type:int(11);primaryKey;autoIncrement:true" json:"id"`
- Date string `gorm:"column:date;type:date;not null;index:date,priority:1" json:"date"` // 统计日期
- ChannelID string `gorm:"column:channel_id;type:varchar(128);index:date,priority:2;default:0" json:"channel_id"` // 渠道ID
- ServerID int32 `gorm:"column:server_id;type:int(11);not null;default:1" json:"server_id"` // 服务器ID
- Collect string `gorm:"column:collect;type:text;not null" json:"collect"` // 统计等级集合
- }
- // TableName RolesLog's table name
- func (*RolesLog) TableName() string {
- return TableNameRolesLog
- }
|