using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// KoubeiCateringDishConditionBatchqueryModel Data Structure. /// [Serializable] public class KoubeiCateringDishConditionBatchqueryModel : AopObject { /// /// 分类字典大类的id /// [XmlElement("catetory_big_id")] public string CatetoryBigId { get; set; } /// /// 小类,商家自定义配置表例如 肉,酒水,素菜 /// [XmlElement("catetory_small_id")] public string CatetorySmallId { get; set; } /// /// 菜品id /// [XmlElement("dish_id")] public string DishId { get; set; } /// /// 菜名 /// [XmlElement("dish_name")] public string DishName { get; set; } /// /// 商户的支付宝user_id. 商户授权后,isv能获得 /// [XmlElement("merchant_id")] public string MerchantId { get; set; } /// /// 查询页码,表示第几页 /// [XmlElement("page_no")] public string PageNo { get; set; } /// /// 分页大小,表示每页查询数量,不超过50 /// [XmlElement("page_size")] public string PageSize { get; set; } /// /// 门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } } }