NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringPosDeskareaSy...

25 lines
637 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>
/// KoubeiCateringPosDeskareaSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringPosDeskareaSyncModel : AopObject
{
/// <summary>
/// 餐区信息
/// </summary>
[XmlElement("desk_area")]
public DeskAreaEntity DeskArea { get; set; }
/// <summary>
/// 标识接口所做操作add 新增update 修改del 删除,其他返回 null
/// </summary>
[XmlElement("type")]
public string Type { get; set; }
}
}