NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntfortuneEquityPortfolioQu...

25 lines
620 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
/// <summary>
/// AntfortuneEquityPortfolioQueryModel Data Structure.
/// </summary>
[Serializable]
public class AntfortuneEquityPortfolioQueryModel : AopObject
{
/// <summary>
/// 组合Code
/// </summary>
[XmlElement("portfolio_code")]
public string PortfolioCode { get; set; }
/// <summary>
/// 组合ID已废弃请使用组合Code参数查询
/// </summary>
[XmlElement("product_id")]
public string ProductId { get; set; }
}
}