NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringDishSpecgroup...

25 lines
753 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>
/// KoubeiCateringDishSpecgroupQueryModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringDishSpecgroupQueryModel : AopObject
{
/// <summary>
/// 规则标签明细的id比如「特别热」的字典id当传入时也做为查询参数
/// </summary>
[XmlElement("detail_spec_id")]
public string DetailSpecId { get; set; }
/// <summary>
/// 规格组的id当传入时也做为查询条件只查询当前规格组下的明细
/// </summary>
[XmlElement("group_spec_id")]
public string GroupSpecId { get; set; }
}
}