NewGaoKaoApi/PaymentSDK/AliPay/Domain/ContractManagerParticipants...

57 lines
1.6 KiB
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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// ContractManagerParticipantsSyncRequest Data Structure.
/// </summary>
[Serializable]
public class ContractManagerParticipantsSyncRequest : AopObject
{
/// <summary>
/// 参与人名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
/// <summary>
/// 参与人主体名称
/// </summary>
[XmlElement("principal_name")]
public string PrincipalName { get; set; }
/// <summary>
/// 参与人主体类型1-个人,2-企业
/// </summary>
[XmlElement("principal_type")]
public string PrincipalType { get; set; }
/// <summary>
/// 用户角色, 1-发起人,2-签署人,3-抄送人
/// </summary>
[XmlElement("role")]
public string Role { get; set; }
/// <summary>
/// 签署状态, 0-待签, 1-未签, 2-已签 3-待审批 4-拒签 5-无需签署
/// </summary>
[XmlElement("sign_status")]
public string SignStatus { get; set; }
/// <summary>
/// 签署时间
/// </summary>
[XmlElement("sign_time")]
public string SignTime { get; set; }
/// <summary>
/// 支付宝账号Id,数组关联多个支付宝账号 (如果未注册支付宝账号 则为空)
/// </summary>
[XmlArray("user_ids")]
[XmlArrayItem("string")]
public List<string> UserIds { get; set; }
}
}