IWechatMPServices.cs 467 B

12345678910111213141516171819
  1. using EMIS.ViewModel.SystemView;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. namespace EMIS.CommonLogic.SystemServices
  7. {
  8. public interface IWechatMPServices
  9. {
  10. List<string> GetOpenIDList(IList<Guid?> roleIDList, IList<Guid?> userIDList);
  11. StudentUserView GetUserViewByOpenID(string openID);
  12. void BindOpenID(string loginID, string openID);
  13. void UnBindOpenID(string openID);
  14. }
  15. }