39 lines
1.0 KiB
C#
39 lines
1.0 KiB
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// KoubeiCateringBookShopbooknotableSyncModel Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class KoubeiCateringBookShopbooknotableSyncModel : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 第三方门店ID
|
|
/// </summary>
|
|
[XmlElement("out_shop_id")]
|
|
public string OutShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 不可预订时间段
|
|
/// </summary>
|
|
[XmlArray("refuse_time")]
|
|
[XmlArrayItem("string")]
|
|
public List<string> RefuseTime { get; set; }
|
|
|
|
/// <summary>
|
|
/// 口碑门店ID
|
|
/// </summary>
|
|
[XmlElement("shop_id")]
|
|
public string ShopId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 时间戳,用作数据的版本号,取系统当前时间即可
|
|
/// </summary>
|
|
[XmlElement("sync_timestamp")]
|
|
public string SyncTimestamp { get; set; }
|
|
}
|
|
}
|