66 lines
1.4 KiB
C#
66 lines
1.4 KiB
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|