NewGaoKaoApi/PaymentSDK/AliPay/Domain/StallEntity.cs

82 lines
2.2 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// StallEntity Data Structure.
/// </summary>
[Serializable]
public class StallEntity : AopObject
{
/// <summary>
/// 档口下菜品集合
/// </summary>
[XmlArray("dish_ids")]
[XmlArrayItem("string")]
public List<string> DishIds { get; set; }
/// <summary>
/// 档口id
/// </summary>
[XmlElement("id")]
public string Id { get; set; }
/// <summary>
/// 档口和kds的绑定信息
/// </summary>
[XmlArray("kds_list")]
[XmlArrayItem("stall_kds_entity")]
public List<StallKdsEntity> KdsList { get; set; }
/// <summary>
/// 商户id
/// </summary>
[XmlElement("merchant_id")]
public string MerchantId { get; set; }
/// <summary>
/// 打印机id
/// </summary>
[XmlElement("printer_id")]
public string PrinterId { get; set; }
/// <summary>
/// 打印机名称
/// </summary>
[XmlElement("printer_name")]
public string PrinterName { get; set; }
/// <summary>
/// 打印机类型FRONT_DESK_PRINTER前台打印机LABEL_PRINTER标签打印机KITCHEN_PRINTER厨房打印机
/// </summary>
[XmlElement("printer_type")]
public string PrinterType { get; set; }
/// <summary>
/// 是否分单打印parted菜品分开打印together菜品统一打印
/// </summary>
[XmlElement("receipt_type")]
public string ReceiptType { get; set; }
/// <summary>
/// 门店id
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 档口名称
/// </summary>
[XmlElement("stall_name")]
public string StallName { get; set; }
/// <summary>
/// 启用情况false:停用true:启用)
/// </summary>
[XmlElement("use")]
public bool Use { get; set; }
}
}