NewGaoKaoApi/PaymentSDK/AliPay/Domain/StallModel.cs

70 lines
1.7 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>
/// StallModel Data Structure.
/// </summary>
[Serializable]
public class StallModel : 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("printer_id")]
public string PrinterId { get; set; }
/// <summary>
/// 打印机名称
/// </summary>
[XmlElement("printer_name")]
public string PrinterName { 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; }
}
}