NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringDishVirtualca...

31 lines
807 B
C#
Raw 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>
/// KoubeiCateringDishVirtualcategoryQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringDishVirtualcategoryQueryModel : AopObject
{
/// <summary>
/// 虚拟类目名称
/// </summary>
[XmlElement("catetory_name")]
public string CatetoryName { get; set; }
/// <summary>
/// 外部门店id和shop_id二选一必填当都传时以shop_id为准
/// </summary>
[XmlElement("out_shop_id")]
public string OutShopId { get; set; }
/// <summary>
/// 门店id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}