// ================================================================================= // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT. // ================================================================================= package do import ( "github.com/gogf/gf/v2/frame/g" ) // GoChannelSubscriptions is the golang structure of table go_channel_subscriptions for DAO operations like Where/Data. type GoChannelSubscriptions struct { g.Meta `orm:"table:go_channel_subscriptions, do:true"` Id interface{} // 频道订阅关系唯一ID,自增 UserId interface{} // 关联的用户ID,指向go_users表的id,长度为8位整数,不能为空 ChannelId interface{} // 关联的频道ID,指向go_channels表的id,不能为空 }