using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayEcoMycarParkingOrderstatusQueryModel Data Structure.
///
[Serializable]
public class AlipayEcoMycarParkingOrderstatusQueryModel : AopObject
{
///
/// 如果商户订单号为空,停车场id和车牌号不能为空,商户订单号优先查询
///
[JsonProperty("car_number")]
public string CarNumber { get; set; }
///
/// 如果商户订单号为空,停车场id和车牌号不能为空,商户订单号优先查询
///
[JsonProperty("parking_id")]
public string ParkingId { get; set; }
///
/// 查询订单时间(不传值为当日时间),格式"yyyy-MM-dd “
///
[JsonProperty("sel_time")]
public string SelTime { get; set; }
///
/// 车主平台交易号,不能跟停车场编号和车牌号同时为空
///
[JsonProperty("transaction_no")]
public string TransactionNo { get; set; }
}
}