You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
896 B
C#
42 lines
896 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Sln.Wcs.ElevatorSdk.Dto
|
|
{
|
|
public class ElevatorTaskRequest
|
|
{
|
|
/// <summary>
|
|
/// 任务编号
|
|
/// </summary>
|
|
public string TaskId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 提升机编号
|
|
/// </summary>
|
|
public string ElevatorId { get; set; }
|
|
|
|
/// <summary>
|
|
/// 起始楼层
|
|
/// </summary>
|
|
public int FromFloor { get; set; }
|
|
|
|
/// <summary>
|
|
/// 目标楼层
|
|
/// </summary>
|
|
public int ToFloor { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务类型
|
|
/// </summary>
|
|
public int TaskType { get; set; }
|
|
|
|
/// <summary>
|
|
/// 托盘编号
|
|
/// </summary>
|
|
public string PalletId { get; set; }
|
|
}
|
|
}
|