using System.Collections.Generic; using System.Threading.Tasks; namespace GxPress.Service.Interface.JiGuang { public interface IJiGuangService : IService { /// /// 创建推送实例 /// /// /// /// /// /// Task CreateJiGuangAsync(int mediaType, int sourceId, int chatType = 0, string imId = "", string text = "", int userId = 0, List userPhones = null, int replyType = 0); } }