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.
|
|
|
|
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; }
|
|
|
|
|
}
|