NewGaoKaoApi/PaymentSDK/AliPay/Domain/Position.cs

49 lines
1.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;
namespace Aop.Api.Domain
{
/// <summary>
/// Position Data Structure.
/// </summary>
[Serializable]
public class Position : AopObject
{
/// <summary>
/// 城市编码
/// </summary>
[XmlElement("city_code")]
public string CityCode { get; set; }
/// <summary>
/// 点位唯一标识id
/// </summary>
[XmlElement("device_id")]
public long DeviceId { get; set; }
/// <summary>
/// 屏幕类型枚举值SLCD、LED
/// </summary>
[XmlElement("device_type")]
public string DeviceType { get; set; }
/// <summary>
/// 公交 或者 地铁SUBWAY、BUS
/// </summary>
[XmlElement("scene")]
public string Scene { get; set; }
/// <summary>
/// 站点编码
/// </summary>
[XmlElement("station_code")]
public string StationCode { get; set; }
/// <summary>
/// 站点等级共分为4个等级分别为LEVELA、LEVLEB、LEVELC 以及 LEVELD
/// </summary>
[XmlElement("station_level")]
public string StationLevel { get; set; }
}
}