NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringDishCommgroup...

31 lines
816 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>
/// KoubeiCateringDishCommgroupSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringDishCommgroupSyncModel : AopObject
{
/// <summary>
/// group组信息detail明细信息
/// </summary>
[XmlElement("biz_type")]
public string BizType { get; set; }
/// <summary>
/// 组模型
/// </summary>
[XmlElement("kbdish_comm_group_info")]
public KbdishCommGroupInfo KbdishCommGroupInfo { get; set; }
/// <summary>
/// 同步类型: add 新增;update 修改;del 删除
/// </summary>
[XmlElement("syn_type")]
public string SynType { get; set; }
}
}