NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntlawSignOperator.cs

43 lines
1.3 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>
/// AntlawSignOperator Data Structure.
/// </summary>
[Serializable]
public class AntlawSignOperator : AopObject
{
/// <summary>
/// 证件类型包括IDENTIFY身份证号USCC统一社会信用码
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 签约人证件号,个人为身份证号,企业为统一社会信用编码
/// </summary>
[XmlElement("operator_cert_no")]
public string OperatorCertNo { get; set; }
/// <summary>
/// 签约机构或签约个人名称
/// </summary>
[XmlElement("operator_name")]
public string OperatorName { get; set; }
/// <summary>
/// 签约人为个人时需要提供签约人的支付宝uid
/// </summary>
[XmlElement("operator_uid")]
public string OperatorUid { get; set; }
/// <summary>
/// 签约人类型个人PERSON 还是企业ENTERPRISE
/// </summary>
[XmlElement("sign_operator_type")]
public string SignOperatorType { get; set; }
}
}