60 lines
1.2 KiB
C#
60 lines
1.2 KiB
C#
|
|
using System;
|
||
|
|
using Newtonsoft.Json;
|
||
|
|
|
||
|
|
namespace Alipay.AopSdk.Core.Domain
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// AlipayMsaasMediarecogAftsCarIdentifyModel Data Structure.
|
||
|
|
/// </summary>
|
||
|
|
[Serializable]
|
||
|
|
public class AlipayMsaasMediarecogAftsCarIdentifyModel : AopObject
|
||
|
|
{
|
||
|
|
/// <summary>
|
||
|
|
/// 扩展入参
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("ext")]
|
||
|
|
public string Ext { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 高
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("h")]
|
||
|
|
public long H { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 用户输入的里程数
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("kilometres")]
|
||
|
|
public long Kilometres { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 传入资源URL或djangoid或aftsid
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("url")]
|
||
|
|
public string Url { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 蚂蚁统一会员ID
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("user_id")]
|
||
|
|
public string UserId { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 宽
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("w")]
|
||
|
|
public long W { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 引导框左上角x
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("x")]
|
||
|
|
public long X { get; set; }
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// 引导框左上角y
|
||
|
|
/// </summary>
|
||
|
|
[JsonProperty("y")]
|
||
|
|
public long Y { get; set; }
|
||
|
|
}
|
||
|
|
}
|