You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.6 KiB
C#

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