using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoMycarViolationVehicleQueryModel Data Structure. /// [Serializable] public class AlipayEcoMycarViolationVehicleQueryModel : AopObject { /// /// 用户车辆ID,支付宝系统唯一 /// [JsonProperty("vi_id")] public string ViId { get; set; } } }