NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringKmsBakingSync...

52 lines
1.5 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>
/// KoubeiCateringKmsBakingSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringKmsBakingSyncModel : AopObject
{
/// <summary>
/// 同步:sync; 核对:check;
/// </summary>
[XmlElement("action")]
public string Action { get; set; }
/// <summary>
/// 核对数据如果action=check则必填
/// </summary>
[XmlElement("check_data")]
public KmsBakingCheckDTO CheckData { get; set; }
/// <summary>
/// 烘焙库存数据根据type选填一次最多批量同步100条数据。
/// </summary>
[XmlArray("inventory_data")]
[XmlArrayItem("kms_baking_inventory_d_t_o")]
public List<KmsBakingInventoryDTO> InventoryData { get; set; }
/// <summary>
/// 烘焙营销数据根据type选填一次最多批量同步100条数据。
/// </summary>
[XmlArray("promotion_data")]
[XmlArrayItem("kms_baking_promotion_d_t_o")]
public List<KmsBakingPromotionDTO> PromotionData { get; set; }
/// <summary>
/// 口碑门店Id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 库存inventory 营销promotion
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}