NewGaoKaoApi/PaymentSDK/AliPay/Domain/FlowSigner.cs

37 lines
1.0 KiB
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>
/// FlowSigner Data Structure.
/// </summary>
[Serializable]
public class FlowSigner : AopObject
{
/// <summary>
/// 创建流程时指定的企业唯一标识,仅签署主体为企业时返回
/// </summary>
[XmlElement("org_third_party_user_id")]
public string OrgThirdPartyUserId { get; set; }
/// <summary>
/// 签署状态0-待签, 1-未签, 2-已签 3-待审批 4-拒签
/// </summary>
[XmlElement("sign_status")]
public long SignStatus { get; set; }
/// <summary>
/// 签署主体类型0-个人, 1-企业
/// </summary>
[XmlElement("signer_account_type")]
public long SignerAccountType { get; set; }
/// <summary>
/// 创建流程时指定个人唯一标识
/// </summary>
[XmlElement("third_party_user_id")]
public string ThirdPartyUserId { get; set; }
}
}