Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoMycarParkingLotbarcodeCreateModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

18 lines
397 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarParkingLotbarcodeCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarParkingLotbarcodeCreateModel : AopObject
{
/// <summary>
/// 停车场编号
/// </summary>
[JsonProperty("parking_id")]
public string ParkingId { get; set; }
}
}