NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringDishEstimated...

33 lines
930 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// KoubeiCateringDishEstimatedSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringDishEstimatedSyncModel : AopObject
{
/// <summary>
/// 菜品估清类型,estimated表示菜品估清
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 菜品估清对象列表
/// </summary>
[XmlArray("kbdish_estimated_list")]
[XmlArrayItem("kbdish_estimated_info")]
public List<KbdishEstimatedInfo> KbdishEstimatedList { get; set; }
/// <summary>
/// 同步类型,update会覆盖更新目前只支持update
/// </summary>
[XmlElement("syn_type")]
public string SynType { get; set; }
}
}