NewGaoKaoApi/PaymentSDK/AliPay/Domain/BPOpenApiPUID.cs

37 lines
955 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>
/// BPOpenApiPUID Data Structure.
/// </summary>
[Serializable]
public class BPOpenApiPUID : AopObject
{
/// <summary>
/// 系统名称
/// </summary>
[XmlElement("app_name")]
public string AppName { get; set; }
/// <summary>
/// 业务ID对应业务单条记录的ID
/// </summary>
[XmlElement("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 业务类型。不要填写下划线、点等特殊符号
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 一般留空。如果一个biz_id可发起多个流程实例则填写此值
/// </summary>
[XmlElement("unique_key")]
public string UniqueKey { get; set; }
}
}