NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayDataAiserviceCloudbus...

37 lines
972 B
C#
Raw 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayDataAiserviceCloudbusScheduletasklistQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayDataAiserviceCloudbusScheduletasklistQueryModel : AopObject
{
/// <summary>
/// 接口版本
/// </summary>
[XmlElement("app_version")]
public string AppVersion { get; set; }
/// <summary>
/// 市
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 公交公司id
/// </summary>
[XmlElement("corp_id")]
public string CorpId { get; set; }
/// <summary>
/// 任务类型: 枚举: 0客流接口 1 时刻表接口 2排班接口 3轮班接口
/// </summary>
[XmlElement("type")]
public long Type { get; set; }
}
}