namespace learun.wechat
{
///
/// 版 本 EasyCode EC管理后台
/// Copyright (c) 2019-present EC管理有限公司
/// 创建人:tobin
/// 日 期:2019.11.06
/// 描 述:用户删除
///
public class UserDelete : OperationRequestBase
{
private string url = "https://qyapi.weixin.qq.com/cgi-bin/user/delete?access_token=ACCESS_TOKEN&userid={0}";
///
///
///
///
protected override string Url()
{
return string.Format(url, userid);
}
///
/// 员工UserID。对应管理端的帐号
///
///
[IsNotNull]
public string userid { get; set; }
}
}