💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、豆包、星火、月之暗面及文生图、文生视频 广告
消息通知事件,当发送PC端右下角消息通知时触发此事件 **返回值** 无 **参数** | 名称 | 类型 | 描述 |非空 | --- | --- | --- |--- | | objContext| Entities| 数据库上下文 |是 | receivers| Dictionary<int, ActivityActor>|消息接收人,key是用户ID |是 | type| string|消息类型:newwftask:工作流待办通知;newwfcc:工作流抄送通知;newwfmsg:工作流消息节点通知;info:系统普通消息通知 |是 | subject| string|消息主题 |是 | content| string|消息内容 |是 **示例** ``` public static void DoSomething(Entities objContext, Dictionary<int, ActivityActor> receivers, string type, string subject, string content) { //TODO: do something } ```