NewGaoKaoApi/PaymentSDK/AliPay/Domain/DetailBean.cs

31 lines
816 B
C#
Raw 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>
/// DetailBean Data Structure.
/// </summary>
[Serializable]
public class DetailBean : AopObject
{
/// <summary>
/// 自定义附件标识,后续下载附件使用此标识区分。
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 页面展示的附件中文描述collectAttachement值为true时必填
/// </summary>
[XmlElement("description")]
public string Description { get; set; }
/// <summary>
/// 展示顺序collectAttachement值为true时必填
/// </summary>
[XmlElement("order")]
public long Order { get; set; }
}
}