You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
859 B
19 lines
859 B
// =================================================================================
|
|
// Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
|
|
// =================================================================================
|
|
|
|
package do
|
|
|
|
import (
|
|
"github.com/gogf/gf/v2/frame/g"
|
|
)
|
|
|
|
// GoChannels is the golang structure of table go_channels for DAO operations like Where/Data.
|
|
type GoChannels struct {
|
|
g.Meta `orm:"table:go_channels, do:true"`
|
|
Id interface{} // 频道唯一ID,自增
|
|
Image interface{} // 频道图片路径或相关标识,可为空
|
|
Name interface{} // 频道名称,最大长度255字符,不能为空
|
|
SubscriptionCount interface{} // 频道订阅数量,初始值为0,可累加
|
|
BackgroundImage interface{} // 频道背景图路径或相关标识,可为空
|
|
}
|