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

15 lines
362 B

  1. package model
  2. import "time"
  3. type ImGroup struct {
  4. Id int `json:"id"`
  5. Kind int `json:"kind"`
  6. Uid int `json:"uid"`
  7. GroupId int `json:"group_id"`
  8. IsFull int `json:"is_full"`
  9. Name string `json:"name" `
  10. CreateTime time.Time `json:"create_time"`
  11. UpdateTime time.Time `json:"update_time" `
  12. }