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.
38 lines
955 B
38 lines
955 B
using System.Collections.Generic;
|
|
|
|
namespace learun.wechat
|
|
{
|
|
/// <summary>
|
|
/// 版 本 EasyCode EC管理后台
|
|
/// Copyright (c) 2019-present EC管理有限公司
|
|
/// 创建人:tobin
|
|
/// 日 期:2019.11.06
|
|
/// 描 述:菜单创建
|
|
/// </summary>
|
|
public class MenuCreate : OperationRequestBase<OperationResultsBase, HttpPostRequest>
|
|
{
|
|
private string url = "https://qyapi.weixin.qq.com/cgi-bin/menu/create?access_token=ACCESS_TOKEN&agentid={0}";
|
|
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
protected override string Url()
|
|
{
|
|
return string.Format(url, agentid);
|
|
}
|
|
|
|
/// <summary>
|
|
/// 企业应用的id,整型。可在应用的设置页面查看
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
[IsNotNull]
|
|
public string agentid { private get; set; }
|
|
|
|
/// <summary>
|
|
/// 一级菜单数组,个数应为1~3个
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public List<MenuItem> button { get; set; }
|
|
}
|
|
}
|