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

48 lines
1.5 KiB
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>
/// OperatorInfo Data Structure.
/// </summary>
[Serializable]
public class OperatorInfo : AopObject
{
/// <summary>
/// 个体工商户经营者证件到期日格式为YYYY-MM-DD
/// </summary>
[JsonProperty("operator_cert_indate")]
public string OperatorCertIndate { get; set; }
/// <summary>
/// 个体工商户经营者证件号码
/// </summary>
[JsonProperty("operator_cert_no")]
public string OperatorCertNo { get; set; }
/// <summary>
/// 个体工商户经营者证件照片背面图片(如证件类型为身份证则上传国徽面图片)
/// </summary>
[JsonProperty("operator_cert_pic_back")]
public string OperatorCertPicBack { get; set; }
/// <summary>
/// 个体工商户经营者证件正面照片(如证件类型为身份证则需要上传头像面图片)
/// </summary>
[JsonProperty("operator_cert_pic_front")]
public string OperatorCertPicFront { get; set; }
/// <summary>
/// 个体工商户经营者证件类型支持传入的类型为RESIDENT(居民身份证)括号中为每种类型的释义,不需要将括号中的内容当参数内容传入。
/// </summary>
[JsonProperty("operator_cert_type")]
public string OperatorCertType { get; set; }
/// <summary>
/// 张三
/// </summary>
[JsonProperty("operator_name")]
public string OperatorName { get; set; }
}
}