通知

字段名称 字段类型 字段说明
notification_id integer 通知ID
receiver_id integer 通知接收人ID
type string 通知类型
data object 通知所需的扩展信息
push_message string 推送到移动端的通知内容
title string 通知标题
content string 通知内容
open_url string 通知点击跳转地址
ref_type string 通知来源对象的类型
ref_id integer 通知来源对象ID
{
  "receiver_id": 11001,
  "type": "task_create",
  "data": {
    "user_id": 21001,
    "item_id": 32111
  },
  "push_message": "某某某 创建了一项任务",
  "title": "某某某 创建了一项任务",
  "content": "任务内容: 某某某 去完成一项工作",
  "open_url": "\/item\/11001",
  "ref_type": "item",
  "ref_id": 32111
}