20 lines
538 B
C#
20 lines
538 B
C#
using System.Collections.Generic;
|
|
|
|
namespace RGD.ZhiQianAPI.ZhiQianModel
|
|
{
|
|
public class AppendOrder
|
|
{
|
|
private int _taskid;
|
|
private List<BoxList> _boxList;
|
|
|
|
/// <summary>
|
|
/// 是下发运单接口返回的id
|
|
/// </summary>
|
|
public int taskid { get => _taskid; set => _taskid = value; }
|
|
|
|
/// <summary>
|
|
/// 追加的任务列表,和创建任务无区别
|
|
/// </summary>
|
|
public List<BoxList> boxlist { get => _boxList; set => _boxList = value; }
|
|
}
|
|
} |