using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// EstimateDishInfo Data Structure. /// [Serializable] public class EstimateDishInfo : AopObject { /// /// 口碑菜品id /// [XmlElement("dish_id")] public string DishId { get; set; } /// /// 库存数量 /// [XmlElement("inventory")] public string Inventory { get; set; } /// /// 外部菜品id /// [XmlElement("out_dish_id")] public string OutDishId { get; set; } } }