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

group_user.go 300 B

1 week ago
1234567891011
  1. package model
  2. type GroupUser struct {
  3. Id int64 `json:"id"`
  4. GroupId int64 `json:"group_id"`
  5. UserId int64 `json:"user_id"`
  6. MemberType int `json:"member_type"`
  7. Status int `json:"status"`
  8. CreateTime string `json:"create_time"`
  9. UpdateTime string `json:"update_time"`
  10. }