NewGaoKaoApi/PaymentSDK/AliPay/Domain/ProductVOOptions.cs

55 lines
1.5 KiB
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>
/// ProductVOOptions Data Structure.
/// </summary>
[Serializable]
public class ProductVOOptions : AopObject
{
/// <summary>
/// 是否包括产品条件组信息默认为false
/// </summary>
[XmlElement("include_condition_group")]
public bool IncludeConditionGroup { get; set; }
/// <summary>
/// 是否包括产品基本信息默认为false
/// </summary>
[XmlElement("include_prod_base")]
public bool IncludeProdBase { get; set; }
/// <summary>
/// 是否包括产品参与者信息默认为false
/// </summary>
[XmlElement("include_prod_ip")]
public bool IncludeProdIp { get; set; }
/// <summary>
/// 是否包括产品区域信息
/// </summary>
[XmlElement("include_prod_lo")]
public bool IncludeProdLo { get; set; }
/// <summary>
/// 是否包括产品外标信息
/// </summary>
[XmlElement("include_prod_mark")]
public bool IncludeProdMark { get; set; }
/// <summary>
/// 产品关联关系
/// </summary>
[XmlElement("include_prod_rel")]
public string IncludeProdRel { get; set; }
/// <summary>
/// 是否包括产品资源项信息
/// </summary>
[XmlElement("include_prod_ri")]
public bool IncludeProdRi { get; set; }
}
}