NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataAiserviceHellobik...

90 lines
2.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayDataAiserviceHellobikeSiteSubmitModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataAiserviceHellobikeSiteSubmitModel : AopObject
{
/// <summary>
/// 接口版本号
/// </summary>
[XmlElement("app_version")]
public string AppVersion { get; set; }
/// <summary>
/// 待输出城市
/// </summary>
[XmlElement("city")]
public string City { get; set; }
/// <summary>
/// 期望输出日期YYYY-MM-DD
/// </summary>
[XmlElement("end_date")]
public string EndDate { get; set; }
/// <summary>
/// 禁停区域
/// </summary>
[XmlArray("exc_fence")]
[XmlArrayItem("string")]
public List<string> ExcFence { get; set; }
/// <summary>
/// 禁用poi
/// </summary>
[XmlArray("exc_poi")]
[XmlArrayItem("string")]
public List<string> ExcPoi { get; set; }
/// <summary>
/// 拓展字段
/// </summary>
[XmlElement("ext_param")]
public string ExtParam { get; set; }
/// <summary>
/// 运营区围栏
/// </summary>
[XmlArray("fence")]
[XmlArrayItem("string")]
public List<string> Fence { get; set; }
/// <summary>
/// 站点缺口
/// </summary>
[XmlElement("num")]
public long Num { get; set; }
/// <summary>
/// 推荐poi
/// </summary>
[XmlArray("rec_poi")]
[XmlArrayItem("string")]
public List<string> RecPoi { get; set; }
/// <summary>
/// 站点大小长cm*宽cm
/// </summary>
[XmlElement("size")]
public string Size { get; set; }
/// <summary>
/// 任务名称
/// </summary>
[XmlElement("title")]
public string Title { get; set; }
/// <summary>
/// 枚举0 助力车站点/ 1 单车站点/ 2 其他
/// </summary>
[XmlElement("type")]
public long Type { get; set; }
}
}