25 lines
853 B
C#
25 lines
853 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// TemplateMdcodeNotifyConfDTO Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class TemplateMdcodeNotifyConfDTO : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 扩展参数信息; 格式为key-value键值对; 支付宝POST请求指定url时,除BizCardNo等固定参数外,将带上ext_params中配置的所有key-value参数。
|
||
/// </summary>
|
||
[XmlElement("ext_params")]
|
||
public string ExtParams { get; set; }
|
||
|
||
/// <summary>
|
||
/// 商户接收发码通知的地址链接; 只支持https地址; 用户打开会员卡时,支付宝提交POST请求此url地址,通知商户发码。
|
||
/// </summary>
|
||
[XmlElement("url")]
|
||
public string Url { get; set; }
|
||
}
|
||
}
|