using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace POSV.Proxy.GuoPan.Entity { public class ConfirmGetRequest { /// /// 订单号 /// public string id { get; set; } /// /// 状态(2->下单成功,-1->下单失败 ,6->订单已配送,10->订单已完成(6,10只针对外卖订单)) /// public string state { get; set; } /// /// 业务单号 /// public string bzid { get; set; } /// /// 桌台号 /// public string table { get; set; } } public class ConfirmPostRequest { /// /// 如果下单失败,请提交错误说明,注意用utf-8编码 /// public string info { get; set; } /// /// 如果有提醒消息,可以提交消息内容,如部分菜品估清未能下单。注意utf-8 /// public string hint { get; set; } /// /// 骑手手机(外卖订单状态6时有效) /// public string rider_phone { get; set; } /// /// 骑手姓名(外卖订单状态6时有效) /// public string rider_name { get; set; } /// /// 外卖配送打包号(外卖订单状态6时有效) /// public string package_num { get; set; } } }