NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringDishCookSyncM...

31 lines
859 B
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>
/// KoubeiCateringDishCookSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringDishCookSyncModel : AopObject
{
/// <summary>
/// cook操作菜谱信息 ; shop:全量覆盖门店; detail;操作菜谱明细以及价格
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 口碑菜谱
/// </summary>
[XmlElement("kb_dish_cook")]
public KbdishCookInfo KbDishCook { get; set; }
/// <summary>
/// 同步类型: add 新增;update 修改;stateChange 状态变更,del 删除
/// </summary>
[XmlElement("syn_type")]
public string SynType { get; set; }
}
}