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