123456789101112131415161718192021222324252627 |
- package models
- // ReportIceMsgPushLibReq ICE消息推送请求结构体
- type ReportIceMsgPushLibReq struct {
- PlatformId string `json:"platformId" description:"订阅号"`
- Title string `json:"title" description:"标题"`
- Summary string `json:"sumary" description:"摘要"`
- Content string `json:"content" description:"消息正文"`
- Code string `json:"code" description:"用户工号"`
- Type int `json:"type" description:"消息类型:2-待办,0-非待办"`
- URL string `json:"url" description:"跳转链接"`
- TaskId string `json:"taskId" description:"任务ID"`
- IsCompleted int `json:"isCompleted" description:"是否已完成状态:1-待办,2-已办,0-非待办"`
- SystemId string `json:"systemId" description:"系统唯一标识"`
- }
- // IceMsgPushLibResp ICE消息推送响应结构体
- type IceMsgPushLibResp struct {
- Code int `json:"code"`
- Msg string `json:"msg"`
- Info struct {
- Data interface{} `json:"data"`
- Msg string `json:"msg"`
- Ret string `json:"ret"`
- Time string `json:"time"`
- } `json:"info"`
- }
|