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 RemoteShutdown
|
|
|
|
|
{
|
|
|
|
|
/// <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>
|
|
|
|
|
/// 控制机号
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string vlCtrNo { get; set; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// 签名字符串
|
|
|
|
|
/// </summary>
|
|
|
|
|
public string sign { get; set; }
|
|
|
|
|
}
|