43 lines
974 B
C#
43 lines
974 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// ParkingOutScene Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class ParkingOutScene : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 车牌号
|
|
/// </summary>
|
|
[XmlElement("car_number")]
|
|
public string CarNumber { get; set; }
|
|
|
|
/// <summary>
|
|
/// 停车费用
|
|
/// </summary>
|
|
[XmlElement("fee")]
|
|
public string Fee { get; set; }
|
|
|
|
/// <summary>
|
|
/// 出场时间
|
|
/// </summary>
|
|
[XmlElement("out_time")]
|
|
public string OutTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 停车场id
|
|
/// </summary>
|
|
[XmlElement("parking_id")]
|
|
public string ParkingId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 停车场名称
|
|
/// </summary>
|
|
[XmlElement("parking_name")]
|
|
public string ParkingName { get; set; }
|
|
}
|
|
}
|