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