using Microsoft.AspNetCore.Mvc;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;
namespace Api.SignToken
{
public interface IWechatService
{
///
/// 发送模板消息
///
///
///
///
///
///
Task SendTemplateMsg(string openid, string url, string jsondata, string templateid);
///
/// 发送链接消息
///
///
///
///
///
///
Task SendNewsMsg(string openid, string title, string content, string url);
///
/// 获取微信用户基本信息
///
///
Task GetUserInfo(string openid);
}
}