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.

48 lines
1.5 KiB
C#

using Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.QiMai
{
/// <summary>
/// 企迈订单配送信息
/// </summary>
[Serializable]
[JsonObject(MemberSerialization.OptIn)]
public class QiMaiOrderThirdDelivery
{
/// <summary>
/// 骑手名称 备注:订单类型为外卖并且已发货的情况下才存在
/// </summary>
[JsonProperty(PropertyName = "driver_name")]
public string DriverName { get; set; }
/// <summary>
/// 骑手联系方式 备注:订单类型为外卖并且已发货的情况下才存在
/// </summary>
[JsonProperty(PropertyName = "driver_phone")]
public string DriverPhone { get; set; }
/// <summary>
/// 骑手取单时间
/// </summary>
[JsonProperty(PropertyName = "gain_time")]
public string GainTime { get; set; }
/// <summary>
/// 配送单确认时间
/// </summary>
[JsonProperty(PropertyName = "confirm_time")]
public string ConfirmTime { get; set; }
/// <summary>
/// 配送完成时间
/// </summary>
[JsonProperty(PropertyName = "complete_time")]
public string CompleteTime { get; set; }
/// <summary>
/// 配送方名称
/// </summary>
[JsonProperty(PropertyName = "express_type")]
public string ExpressType { get; set; }
}
}