蛋蛋星球RabbitMq消费项目
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
498 B

  1. package model
  2. import "time"
  3. type Group struct {
  4. Id int64 // 群组id
  5. Name string // 组名
  6. AvatarUrl string // 头像
  7. Introduction string // 群简介
  8. UserNum int32 // 群组人数
  9. IsAllMemberBanned int32 // 是否全员禁言(1:是 2:否)
  10. MasterId int64 // 站长id
  11. Extra string // 附加字段
  12. CreateTime time.Time // 创建时间
  13. UpdateTime time.Time // 更新时间
  14. }