24 lines
551 B
C#
24 lines
551 B
C#
using System;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Alipay.AopSdk.Core.Domain
|
|
{
|
|
/// <summary>
|
|
/// AlipayEcoMycarParkingCardbarcodeCreateModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AlipayEcoMycarParkingCardbarcodeCreateModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 设备商订单id
|
|
/// </summary>
|
|
[JsonProperty("equipment_id")]
|
|
public string EquipmentId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 支付宝交易流水号订单
|
|
/// </summary>
|
|
[JsonProperty("parking_id")]
|
|
public string ParkingId { get; set; }
|
|
}
|
|
} |