using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// TbapiQueryAmountBizContent Data Structure. /// [Serializable] public class TbapiQueryAmountBizContent : AopObject { /// /// 查询指定额度产品组 /// [XmlElement("amt_group")] public string AmtGroup { get; set; } /// /// 查询指定额度产品码 /// [XmlArray("amt_prods")] [XmlArrayItem("string")] public List AmtProds { get; set; } /// /// 请求来源 /// [XmlElement("request_from")] public string RequestFrom { get; set; } /// /// 请求场景 /// [XmlElement("scene")] public string Scene { get; set; } } }