NewGaoKaoApi/PaymentSDK/AliPay/Domain/PosDishCookModel.cs

79 lines
1.9 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;
namespace Aop.Api.Domain
{
/// <summary>
/// PosDishCookModel Data Structure.
/// </summary>
[Serializable]
public class PosDishCookModel : AopObject
{
/// <summary>
/// 渠道 eatin堂食takeout外卖,paipai 扫码,kbb2c 口碑点餐
/// </summary>
[XmlElement("cook_channel")]
public string CookChannel { get; set; }
/// <summary>
/// 菜谱ID
/// </summary>
[XmlElement("cook_id")]
public string CookId { get; set; }
/// <summary>
/// 菜谱名称
/// </summary>
[XmlElement("cook_name")]
public string CookName { get; set; }
/// <summary>
/// 操作员
/// </summary>
[XmlElement("create_user")]
public string CreateUser { get; set; }
/// <summary>
/// 数据的创建时间
/// </summary>
[XmlElement("gmt_create")]
public string GmtCreate { get; set; }
/// <summary>
/// 数据的修改时间
/// </summary>
[XmlElement("gmt_modified")]
public string GmtModified { get; set; }
/// <summary>
/// 商户id
/// </summary>
[XmlElement("merchant_id")]
public string MerchantId { get; set; }
/// <summary>
/// 菜谱描述
/// </summary>
[XmlElement("remarks")]
public string Remarks { get; set; }
/// <summary>
/// 门店ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// yazuo,meituan,ele
/// </summary>
[XmlElement("source_from")]
public string SourceFrom { get; set; }
/// <summary>
/// open 启动 stop 停用
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}