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