37 lines
761 B
C#
37 lines
761 B
C#
using Newtonsoft.Json;
|
|
using OfficeOpenXml.Attributes;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace ARW.Model.Vo.Api.OrderManage.Orders
|
|
{
|
|
/// <summary>
|
|
/// 物流状态展示对象Api
|
|
///
|
|
/// @author lwh
|
|
/// @date 2023-10-20
|
|
/// </summary>
|
|
public class TrajectoryVo
|
|
{
|
|
|
|
/// <summary>
|
|
/// 描述 : 快递单号
|
|
/// </summary>
|
|
public string LogisticsCompanyCode { get; set; }
|
|
|
|
/// <summary>
|
|
/// 描述 : 物流公司名称
|
|
/// </summary>
|
|
public string LogisticsCompanyName { get; set; }
|
|
|
|
|
|
/// <summary>
|
|
/// 描述 : 物流节点
|
|
/// </summary>
|
|
public List<Trajectory> Trajectorys { get; set; }
|
|
|
|
}
|
|
|
|
}
|