蛋蛋星球-客户端
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.
 
 
 
 
 
 

38 lines
1.1 KiB

  1. package model
  2. // Group 群组
  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. IsAllAddFriend int32 // 是否允许加好友(1:是 2:否)
  11. Extra string // 附加字段
  12. CreateTime string // 创建时间
  13. UpdateTime string // 更新时间
  14. }
  15. type GroupUser struct {
  16. Id int64 // 自增主键
  17. GroupId int64 // 群组id
  18. UserId int64 // 用户id
  19. MemberType int // 群组类型
  20. Remarks string // 备注
  21. Extra string // 附加属性
  22. Status int // 状态
  23. CreateTime string // 创建时间
  24. UpdateTime string // 更新时间
  25. }
  26. type GroupWithOwner struct {
  27. GroupID int64 `json:"group_user.group_id"`
  28. OwnerID int64 `json:"group_user.owner_id"`
  29. }
  30. type CustomerServiceWithUser struct {
  31. CustomerServiceUID int64 `json:"customer_service.uid"`
  32. UserIMID int64 `json:"user.id"`
  33. }