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.

45 lines
985 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Sln.Wcs.ElevatorSdk.Dto
{
/// <summary>
/// 提升机任务反馈信息
/// </summary>
public class ElevatorTaskFeedback
{
/// <summary>
/// 任务编号
/// </summary>
public string TaskId { get; set; }
/// <summary>
/// 提升机编号
/// </summary>
public string ElevatorId { get; set; }
/// <summary>
/// 任务状态
/// </summary>
public int TaskStatus { get; set; }
/// <summary>
/// 当前楼层
/// </summary>
public int CurrentFloor { get; set; }
/// <summary>
/// 完成时间
/// </summary>
public DateTime? CompleteTime { get; set; }
/// <summary>
/// 错误代码
/// </summary>
public int ErrorCode { get; set; }
}
}