NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoMycarViolationInfo...

67 lines
1.7 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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