19 lines
584 B
C#
19 lines
584 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AntfortuneYebInfoAdvertisingQueryModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AntfortuneYebInfoAdvertisingQueryModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 参数名:mobile 应用场景:外部渠道传递手机号,由余额宝来判断是否需要进行投放并告知外部渠道 如何获取:外部渠道自己获取传过来
|
|
/// </summary>
|
|
[XmlElement("mobile")]
|
|
public string Mobile { get; set; }
|
|
}
|
|
}
|