NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringQueueShopinfo...

67 lines
2.0 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>
/// KoubeiCateringQueueShopinfoSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringQueueShopinfoSyncModel : AopObject
{
/// <summary>
/// 过号是否作废。返回0表示作废非0表示不作废并以数字表示过号延几桌。如返回1表示延一桌返回2则是延两桌。
/// </summary>
[XmlElement("discard_off")]
public long DiscardOff { get; set; }
/// <summary>
/// 等位优惠信息
/// </summary>
[XmlElement("discount_desc")]
public string DiscountDesc { get; set; }
/// <summary>
/// 取号距离(单位:米)
/// </summary>
[XmlElement("distance_limit")]
public long DistanceLimit { get; set; }
/// <summary>
/// 过号描述
/// </summary>
[XmlElement("notice")]
public string Notice { get; set; }
/// <summary>
/// 美味门店ID
/// </summary>
[XmlElement("out_shop_id")]
public string OutShopId { get; set; }
/// <summary>
/// 口碑门店ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 是否显示号单等待时间。如返回true则表示是如返回false则表示否。
/// </summary>
[XmlElement("show_order_wait_time")]
public bool ShowOrderWaitTime { get; set; }
/// <summary>
/// 是否显示排队等待时间。如返回true则表示是如返回false则表示否。
/// </summary>
[XmlElement("show_wait_time")]
public bool ShowWaitTime { get; set; }
/// <summary>
/// 时间戳,用作数据的版本号,取系统当前时间即可
/// </summary>
[XmlElement("sync_timestamp")]
public string SyncTimestamp { get; set; }
}
}