NewGaoKaoApi/PaymentSDK/AliPay/Domain/AttachmentDetail.cs

31 lines
808 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>
/// AttachmentDetail Data Structure.
/// </summary>
[Serializable]
public class AttachmentDetail : AopObject
{
/// <summary>
/// 创建流程时指定的附件code可能为空。身份证正反面的固定code正面ESIGN_IDCARD背面ESIGN_BACK_IDCARD
/// </summary>
[XmlElement("code")]
public string Code { get; set; }
/// <summary>
/// 附件文件名
/// </summary>
[XmlElement("file_name")]
public string FileName { get; set; }
/// <summary>
/// 附件下载地址
/// </summary>
[XmlElement("file_url")]
public string FileUrl { get; set; }
}
}