using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AntMerchantExpandSavingPassQueryModel Data Structure. /// [Serializable] public class AntMerchantExpandSavingPassQueryModel : AopObject { /// /// 咨询来源渠道 /// [XmlElement("ch_info")] public string ChInfo { get; set; } /// /// 商家ID /// [XmlElement("pid")] public string Pid { get; set; } /// /// 解决方案code ,如省卡付费会员 /// [XmlElement("sol_code")] public string SolCode { get; set; } /// /// 用户ID /// [XmlElement("user_id")] public string UserId { get; set; } } }