12345678910111213141516171819 |
- using EMIS.ViewModel.SystemView;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace EMIS.CommonLogic.SystemServices
- {
- public interface IWechatMPServices
- {
- List<string> GetOpenIDList(IList<Guid?> roleIDList, IList<Guid?> userIDList);
- StudentUserView GetUserViewByOpenID(string openID);
- void BindOpenID(string loginID, string openID);
- void UnBindOpenID(string openID);
- }
- }
|