初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarParkingVehicleQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarParkingVehicleQueryModel : AopObject
{
/// <summary>
/// 支付宝用户车辆ID系统唯一。该参数会在停车平台用户点击查询缴费跳转到ISV停车缴费查询页面时从请求中传递
/// </summary>
[JsonProperty("car_id")]
public string CarId { get; set; }
}
}