保存进度!

This commit is contained in:
Kane Wang 2022-04-14 11:40:55 +08:00
parent 2202972510
commit 3dda8252f6
1 changed files with 20 additions and 0 deletions

View File

@ -0,0 +1,20 @@
package com.cpic.xim.wechat.common;
public class PushMessage {
/**
* 向公众号推送通知消息接口文档参考 彭奕洁 编写消息发送接口调用文档
* @param url 公众号接口网址
* @param title 通知的标题
* @param notifyType 通知类型
* @param notifyMessage 通知文本内容
*/
public static void PushNotifyMessage( String url,
String title,
String notifyType,
String notifyMessage )
{
}
}