NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiCateringSmartstoreDat...

217 lines
6.3 KiB
C#
Raw 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>
/// KoubeiCateringSmartstoreDataSyncModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiCateringSmartstoreDataSyncModel : AopObject
{
/// <summary>
/// 烘焙商品操作模型,如果是传输烘焙商品操作数据,此模型需要赋值,其他业务无需关心此字段
/// </summary>
[XmlElement("baking_item_operation_data")]
public BakingItemOperationData BakingItemOperationData { get; set; }
/// <summary>
/// 浏览过的商品,格式英文逗号分隔
/// </summary>
[XmlElement("browse_dishs")]
public string BrowseDishs { get; set; }
/// <summary>
/// 浏览时长,单位分钟
/// </summary>
[XmlElement("browse_time")]
public string BrowseTime { get; set; }
/// <summary>
/// 是否购买蛋糕Y成功 N不成功
/// </summary>
[XmlElement("buy_result")]
public string BuyResult { get; set; }
/// <summary>
/// 商户开柜时间
/// </summary>
[XmlElement("cabinet_open_time")]
public string CabinetOpenTime { get; set; }
/// <summary>
/// 用户取餐时间
/// </summary>
[XmlElement("carry_time")]
public string CarryTime { get; set; }
/// <summary>
/// 送餐完成时间
/// </summary>
[XmlElement("delivery_end_time")]
public string DeliveryEndTime { get; set; }
/// <summary>
/// 开始送餐时间
/// </summary>
[XmlElement("delivery_start_time")]
public string DeliveryStartTime { get; set; }
/// <summary>
/// 留言描述
/// </summary>
[XmlElement("description")]
public string Description { get; set; }
/// <summary>
/// 订单优惠金额,单位元
/// </summary>
[XmlElement("discount_price")]
public string DiscountPrice { get; set; }
/// <summary>
/// 子订单优惠金额,单位元
/// </summary>
[XmlElement("item_discount_price")]
public string ItemDiscountPrice { get; set; }
/// <summary>
/// 子订单号
/// </summary>
[XmlElement("item_order_id")]
public string ItemOrderId { get; set; }
/// <summary>
/// 子订单名称
/// </summary>
[XmlElement("item_order_name")]
public string ItemOrderName { get; set; }
/// <summary>
/// 子订单价格,单位元
/// </summary>
[XmlElement("item_price")]
public string ItemPrice { get; set; }
/// <summary>
/// 子订单份数
/// </summary>
[XmlElement("item_quantity")]
public string ItemQuantity { get; set; }
/// <summary>
/// 订单创建时间
/// </summary>
[XmlElement("order_create_time")]
public string OrderCreateTime { get; set; }
/// <summary>
/// 主订单号
/// </summary>
[XmlElement("order_id")]
public string OrderId { get; set; }
/// <summary>
/// 开始点单时间
/// </summary>
[XmlElement("order_start_time")]
public string OrderStartTime { get; set; }
/// <summary>
/// 订单类型门店堂食dish门店打包pack预约堂食book_dish预约打包book_pack
/// </summary>
[XmlElement("order_type")]
public string OrderType { get; set; }
/// <summary>
/// 支付时间
/// </summary>
[XmlElement("pay_time")]
public string PayTime { get; set; }
/// <summary>
/// 支付方式微信wechat支付宝alipay现金cash银行卡card储值卡value
/// </summary>
[XmlElement("pay_type")]
public string PayType { get; set; }
/// <summary>
/// 用餐人数
/// </summary>
[XmlElement("people")]
public string People { get; set; }
/// <summary>
/// 识别完成时间
/// </summary>
[XmlElement("recognize_end_time")]
public string RecognizeEndTime { get; set; }
/// <summary>
/// 开始识别时间
/// </summary>
[XmlElement("recognize_start_time")]
public string RecognizeStartTime { get; set; }
/// <summary>
/// 是否识别成功Y成功 N不成功
/// </summary>
[XmlElement("recognize_succeed")]
public string RecognizeSucceed { get; set; }
/// <summary>
/// 推荐菜品。格式:菜品名称,以英文逗号分隔
/// </summary>
[XmlElement("recommend_dishs")]
public string RecommendDishs { get; set; }
/// <summary>
/// 退款金额,单位元
/// </summary>
[XmlElement("refund_amount")]
public string RefundAmount { get; set; }
/// <summary>
/// 退款理由
/// </summary>
[XmlElement("refund_reason")]
public string RefundReason { get; set; }
/// <summary>
/// 退款时间
/// </summary>
[XmlElement("refund_time")]
public string RefundTime { get; set; }
/// <summary>
/// 场景 点餐dishOrder 取餐柜diningCabinet 零售柜retailCabinet 图像识别imageRecognize RFID识别RFID 人脸识别支付facePay 蛋糕屏cakeScreen 送餐机器人diningRobot 烘焙商品操作bakingItemOperation
/// </summary>
[XmlElement("scene")]
public string Scene { get; set; }
/// <summary>
/// 门店ID
/// </summary>
[XmlElement("shop_id")]
public string ShopId { get; set; }
/// <summary>
/// 桌号
/// </summary>
[XmlElement("table_number")]
public string TableNumber { get; set; }
/// <summary>
/// 订单总金额,单位元
/// </summary>
[XmlElement("total_price")]
public string TotalPrice { get; set; }
/// <summary>
/// 用户ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}