golang-im聊天
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
547 B

  1. package model
  2. import (
  3. "time"
  4. )
  5. type GroupComplain struct {
  6. Id int64 // 自增主键
  7. GroupId int64 // 群组id
  8. UserId int64 // 用户id
  9. ComplainType int // 投诉类型(1:存在赌博行为 2:存在骗钱行为 3:不当信息骚扰 4:传播谣言 5:发布假冒商品信息 6:侵犯未成年人权益 7:其他)
  10. Text string // 投诉内容
  11. ImageList string // 图片
  12. Status int // 状态
  13. CreateTime time.Time // 创建时间
  14. UpdateTime time.Time // 更新时间
  15. }