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

66 lines
1.4 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>
/// AlipayEcoMycarViolationInfoPushModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarViolationInfoPushModel : AopObject
{
/// <summary>
/// 1:可在线处理, 2:不可在线处理, 3:需查询确定
/// </summary>
[JsonProperty("deal_type")]
public string DealType { get; set; }
/// <summary>
/// 暂无
/// </summary>
[JsonProperty("push_type")]
public string PushType { get; set; }
/// <summary>
/// 违章地点
/// </summary>
[JsonProperty("vi_address")]
public string ViAddress { get; set; }
/// <summary>
/// 违章罚款金额
/// </summary>
[JsonProperty("vi_fine")]
public string ViFine { get; set; }
/// <summary>
/// 是否已处理, 0:已处理1:未处理
/// </summary>
[JsonProperty("vi_handled")]
public string ViHandled { get; set; }
/// <summary>
/// 车牌号
/// </summary>
[JsonProperty("vi_number")]
public string ViNumber { get; set; }
/// <summary>
/// 违章扣分
/// </summary>
[JsonProperty("vi_point")]
public string ViPoint { get; set; }
/// <summary>
/// 违章时间(yyyyMMddhhmmss)
/// </summary>
[JsonProperty("vi_time")]
public string ViTime { get; set; }
/// <summary>
/// 违章行为
/// </summary>
[JsonProperty("vi_type")]
public string ViType { get; set; }
}
}