using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// StallKdsEntity Data Structure. /// [Serializable] public class StallKdsEntity : AopObject { /// /// 订单来源 枚举 默认all /// [XmlElement("dinner_type")] public string DinnerType { get; set; } /// /// kds id /// [XmlElement("kds_id")] public string KdsId { get; set; } /// /// kds名称 /// [XmlElement("kds_name")] public string KdsName { get; set; } /// /// kds类型 : 制作屏,备餐屏 , 取餐屏 /// [XmlElement("kds_type")] public string KdsType { get; set; } /// /// 0-不打印 ,1-打印 , 默认 0 /// [XmlElement("print_flag")] public string PrintFlag { get; set; } /// /// 打印机 Id /// [XmlElement("printer_id")] public string PrinterId { get; set; } } }