You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

UserInvite.cs 533 B

4 years ago
12345678910111213141516171819202122
  1. 
  2. namespace Learun.Application.WeChat
  3. {
  4. /// <summary>
  5. /// 邀请用户关注
  6. /// </summary>
  7. public class UserInvite : OperationRequestBase<OperationResultsBase, HttpPostRequest>
  8. {
  9. protected override string Url()
  10. {
  11. return "https://qyapi.weixin.qq.com/cgi-bin/invite/send?access_token=ACCESS_TOKEN";
  12. }
  13. /// <summary>
  14. /// 员工UserID
  15. /// </summary>
  16. /// <returns></returns>
  17. [IsNotNull]
  18. public string userid { get; set; }
  19. }
  20. }