NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringPosStallCreat...

51 lines
1.4 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>
/// KoubeiCateringPosStallCreateModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringPosStallCreateModel : AopObject
{
/// <summary>
/// 档口下菜品集合
/// </summary>
[XmlArray("dish_ids")]
[XmlArrayItem("string")]
public List<string> DishIds { get; set; }
/// <summary>
/// 打印机id
/// </summary>
[XmlElement("printer_id")]
public string PrinterId { 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; }
}
}