using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// StallModel Data Structure. /// [Serializable] public class StallModel : AopObject { /// /// 档口下菜品集合 /// [XmlArray("dish_ids")] [XmlArrayItem("string")] public List DishIds { get; set; } /// /// 档口id /// [XmlElement("id")] public string Id { get; set; } /// /// kds详情信息 /// [XmlArray("kds_list")] [XmlArrayItem("stall_kds_entity")] public List KdsList { get; set; } /// /// 打印机id /// [XmlElement("printer_id")] public string PrinterId { get; set; } /// /// 打印机名称 /// [XmlElement("printer_name")] public string PrinterName { get; set; } /// /// 是否分单打印(parted:菜品分开打印;together:菜品统一打印) /// [XmlElement("receipt_type")] public string ReceiptType { get; set; } /// /// 门店id /// [XmlElement("shop_id")] public string ShopId { get; set; } /// /// 档口名称 /// [XmlElement("stall_name")] public string StallName { get; set; } /// /// 启用情况(false:停用;true:启用) /// [XmlElement("use")] public bool Use { get; set; } } }