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.
36 lines
738 B
C#
36 lines
738 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 ElevatorTaskResponse
|
|
{
|
|
/// <summary>
|
|
/// 是否成功
|
|
/// </summary>
|
|
public bool Success { get; set; }
|
|
|
|
/// <summary>
|
|
/// 响应代码
|
|
/// </summary>
|
|
public int Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 响应消息
|
|
/// </summary>
|
|
public string Message { get; set; }
|
|
|
|
/// <summary>
|
|
/// 任务编号
|
|
/// </summary>
|
|
public string TaskId { get; set; }
|
|
}
|
|
|
|
}
|