usermail.go 374 B

123456789101112131415
  1. package proto
  2. // 客服回复、用户邮件(不含附件)
  3. type UserMail struct {
  4. Id int //标识
  5. Title string //标题
  6. FromUserId int //用户ID
  7. ToUserId int //目标用户ID
  8. Content string //消息
  9. IsRead bool //是否已读
  10. Crdate int //时间
  11. OpUserId int //客服账号id
  12. OpUserName string //客服账号名称
  13. }