You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.1 KiB

namespace Service.Bramek;
/// <summary>
/// 获取车道信息
/// </summary>
public class GetLaneInformation
{
/// <summary>
/// 发者应用ID
/// </summary>
public string appid { get; set; }
/// <summary>
/// 车场唯一编号
/// </summary>
public string parkKey { get; set; }
/// <summary>
/// 随机数 请求接口时随机产生的小数与上次请求不能重复否则认为是非法请求如9.949955201
/// </summary>
public string rand { get; set; }
/// <summary>
/// 版本号 目前支持版本 v1.0 / v1.1
/// </summary>
public string version { get; set; }
/// <summary>
/// ①已经发送数据索引最大id 可为空默认从0开始v1.0 ②查询第几页数据默认0为第一页1为第二页以此类推v1.1)
/// </summary>
public string indexId { get; set; }
/// <summary>
/// 返回查询记录条数默认20条最大20条
/// </summary>
public string size { get; set; }
/// <summary>
/// 签名字符串
/// </summary>
public string sign { get; set; }
}