Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/BPOpenApiPUID.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

36 lines
843 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
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; }
}
}