Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/BPOpenApiPUID.cs

36 lines
843 B
C#
Raw Normal View History

2020-10-07 20:25:03 +08:00
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// BPOpenApiPUID Data Structure.
/// </summary>
[Serializable]
public class BPOpenApiPUID : AopObject
{
/// <summary>
/// 系统名称
/// </summary>
[JsonProperty("app_name")]
public string AppName { get; set; }
/// <summary>
/// 业务ID对应业务单条记录的ID
/// </summary>
[JsonProperty("biz_id")]
public string BizId { get; set; }
/// <summary>
/// 业务类型。不要填写下划线、点等特殊符号
/// </summary>
[JsonProperty("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 一般留空。如果一个biz_id可发起多个流程实例则填写此值
/// </summary>
[JsonProperty("unique_key")]
public string UniqueKey { get; set; }
}
}