37 lines
1.1 KiB
C#
37 lines
1.1 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// TemplateActionMiniAppUrlDTO Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class TemplateActionMiniAppUrlDTO : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 行动点按钮是否在列表页展示,true 或 false,不填则默认false; 列表页可以配置展示最多2项小程序跳转行动点。
|
||
/// </summary>
|
||
[XmlElement("display_on_list")]
|
||
public string DisplayOnList { get; set; }
|
||
|
||
/// <summary>
|
||
/// 小程序appId
|
||
/// </summary>
|
||
[XmlElement("mini_app_id")]
|
||
public string MiniAppId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 指定小程序页面,不填则默认跳转至对应小程序首页
|
||
/// </summary>
|
||
[XmlElement("mini_page_param")]
|
||
public string MiniPageParam { get; set; }
|
||
|
||
/// <summary>
|
||
/// query参数,商户自定义传参,填入值将以"query"为参数名提交至指定小程序页面
|
||
/// </summary>
|
||
[XmlElement("mini_query_param")]
|
||
public string MiniQueryParam { get; set; }
|
||
}
|
||
}
|