蛋蛋星球-客户端
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 

16 行
367 B

  1. package model
  2. import "time"
  3. // CustomerService 客服表
  4. type CustomerService struct {
  5. Id int64
  6. Uid int64 // 用户id
  7. Weight int32 // 权重
  8. State int32 // 状态
  9. HasUserNums int // 拥有用户数量
  10. Memo string // 备注
  11. CreateTime time.Time // 创建时间
  12. UpdateTime time.Time // 更新时间
  13. }