using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// KoubeiCateringPosCooklistQueryModel Data Structure.
///
[Serializable]
public class KoubeiCateringPosCooklistQueryModel : AopObject
{
///
/// 菜谱业务类型
///
[XmlElement("biz_type")]
public string BizType { get; set; }
///
/// 门店ID
///
[XmlElement("shop_id")]
public string ShopId { get; set; }
}
}