using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayInsSceneSellerActivityQueryModel Data Structure. /// [Serializable] public class AlipayInsSceneSellerActivityQueryModel : AopObject { /// /// 渠道账号对应的uid,如果证据类型字段没填则必填 /// [XmlElement("channel_account_id")] public string ChannelAccountId { get; set; } /// /// 渠道账号类型,如果证据类型字段没填则必填1:支付宝账号 2:淘宝账号 /// [XmlElement("channel_account_type")] public long ChannelAccountType { get; set; } /// /// 签约的标准产品码 /// [XmlElement("sp_code")] public string SpCode { get; set; } } }