You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
1.1 KiB
47 lines
1.1 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace BBWY.Client.Models.APIModel
|
|
{
|
|
public class TaskAbortEnumResponse
|
|
{
|
|
|
|
/// <summary>
|
|
/// 货架列表
|
|
/// </summary>
|
|
public List<string> ShelvesNumberList { get; set; }
|
|
|
|
/// <summary>
|
|
/// 层数列表
|
|
/// </summary>
|
|
public List<int> FloorNumberList { get; set; }
|
|
|
|
///// <summary>
|
|
///// 异常类型列表
|
|
///// </summary>
|
|
//public List<EnumModel> TaskExceptionTypeList { get; set; }
|
|
/// <summary>
|
|
/// 是否能包装类型
|
|
/// </summary>
|
|
public List<IsContinuePackageModel> IsCanPackModelList { get; set; }
|
|
}
|
|
|
|
public class IsContinuePackageModel
|
|
{
|
|
/// <summary>
|
|
/// 可继续包装类型
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
/// <summary>
|
|
/// 索引
|
|
/// </summary>
|
|
public int Index { get; set; }
|
|
|
|
/// <summary>
|
|
/// 异常类型列表
|
|
/// </summary>
|
|
public List<EnumModel> TaskExceptionTypeList { get; set; }
|
|
|
|
}
|
|
}
|
|
|