Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Response/AlipayEcoMycarDataserviceViolationinfoShareResponse.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

34 lines
736 B
C#

using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayEcoMycarDataserviceViolationinfoShareResponse.
/// </summary>
public class AlipayEcoMycarDataserviceViolationinfoShareResponse : AopResponse
{
/// <summary>
/// 车架号
/// </summary>
[JsonProperty("body_num")]
public string BodyNum { get; set; }
/// <summary>
/// 发动机号
/// </summary>
[JsonProperty("engine_num")]
public string EngineNum { get; set; }
/// <summary>
/// 车辆id
/// </summary>
[JsonProperty("vehicle_id")]
public string VehicleId { get; set; }
/// <summary>
/// 车牌
/// </summary>
[JsonProperty("vi_number")]
public string ViNumber { get; set; }
}
}