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.
 
 
 
 

30 lines
694 B

namespace learun.wechat
{
/// <summary>
/// 版 本 EasyCode EC管理后台
/// Copyright (c) 2019-present EC管理有限公司
/// 创建人:tobin
/// 日 期:2019.11.06
/// 描 述:用户获取
/// </summary>
public class UserGet : OperationRequestBase<UserGetResult, HttpGetRequest>
{
private string url = "https://qyapi.weixin.qq.com/cgi-bin/user/get?access_token=ACCESS_TOKEN&userid={0}";
/// <summary>
///
/// </summary>
/// <returns></returns>
protected override string Url()
{
return string.Format(url, userid);
}
/// <summary>
/// 员工UserID
/// </summary>
/// <returns></returns>
[IsNotNull]
public string userid { get; set; }
}
}