using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipaySocialBaseRelationCombinedQueryModel Data Structure. /// [Serializable] public class AlipaySocialBaseRelationCombinedQueryModel : AopObject { /// /// 最大需要返回的列表值 /// [XmlElement("limit")] public long Limit { get; set; } /// /// 关系查询的业务类型编号,此类型由mobilerelation分配,不同的类型对应不同的结果集 /// [XmlElement("scene_code")] public string SceneCode { get; set; } } }