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.

17 lines
768 B

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