31 lines
878 B
C#
31 lines
878 B
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayEcoMycarParkingEnterinfoSyncModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayEcoMycarParkingEnterinfoSyncModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 车牌号
|
||
/// </summary>
|
||
[XmlElement("car_number")]
|
||
public string CarNumber { get; set; }
|
||
|
||
/// <summary>
|
||
/// 车辆入场的时间,格式"YYYY-MM-DD HH:mm:ss",24小时制,请保证服务器时间准确,入场时间不应晚于当前网络时间
|
||
/// </summary>
|
||
[XmlElement("in_time")]
|
||
public string InTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 支付宝停车场ID ,系统唯一
|
||
/// </summary>
|
||
[XmlElement("parking_id")]
|
||
public string ParkingId { get; set; }
|
||
}
|
||
}
|