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