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.
 
 
 
 

18 lines
461 B

  1. package model
  2. import (
  3. "time"
  4. )
  5. type GroupNotice struct {
  6. Id int64 // 自增主键
  7. GroupId int64 // 群组id
  8. UserId int64 // 发布用户id
  9. Content string // 公告内容
  10. LikeNums int // 点赞数量
  11. ReadNums int // 阅读数量
  12. PublishType int32 // 发布方式(1:仅发布 2:发布并通知 3:通知并置顶)
  13. CreateTime time.Time // 创建时间
  14. UpdateTime time.Time // 更新时间
  15. }