67 lines
1.6 KiB
C#
67 lines
1.6 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayUserCertDocVehicleLicense Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayUserCertDocVehicleLicense : AopObject
|
|
{
|
|
/// <summary>
|
|
/// base64编码后的主页照片
|
|
/// </summary>
|
|
[XmlElement("encoded_img_main")]
|
|
public string EncodedImgMain { get; set; }
|
|
|
|
/// <summary>
|
|
/// base64编码后的副页照片
|
|
/// </summary>
|
|
[XmlElement("encoded_img_vice")]
|
|
public string EncodedImgVice { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发动机号码
|
|
/// </summary>
|
|
[XmlElement("engine_no")]
|
|
public string EngineNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 发证日期
|
|
/// </summary>
|
|
[XmlElement("issue_date")]
|
|
public string IssueDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 品牌型号
|
|
/// </summary>
|
|
[XmlElement("model")]
|
|
public string Model { get; set; }
|
|
|
|
/// <summary>
|
|
/// 所有人
|
|
/// </summary>
|
|
[XmlElement("owner")]
|
|
public string Owner { get; set; }
|
|
|
|
/// <summary>
|
|
/// 号牌号码
|
|
/// </summary>
|
|
[XmlElement("plate_no")]
|
|
public string PlateNo { get; set; }
|
|
|
|
/// <summary>
|
|
/// 注册日期
|
|
/// </summary>
|
|
[XmlElement("register_date")]
|
|
public string RegisterDate { get; set; }
|
|
|
|
/// <summary>
|
|
/// 车辆识别代号
|
|
/// </summary>
|
|
[XmlElement("vin")]
|
|
public string Vin { get; set; }
|
|
}
|
|
}
|