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.
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
#region << 版 本 注 释 >>
|
|
|
|
|
|
/*--------------------------------------------------------------------
|
|
|
|
|
|
* 版权所有 (c) 2026 WenJY 保留所有权利。
|
|
|
|
|
|
* CLR版本:4.0.30319.42000
|
|
|
|
|
|
* 机器名称:T14-GEN3-7895
|
|
|
|
|
|
* 命名空间:Sln.Wcs.HikRoBotSdk.Dto.CancelTask
|
|
|
|
|
|
* 唯一标识:88e5b038-9755-4141-8ba6-15cafafddc3f
|
|
|
|
|
|
*
|
|
|
|
|
|
* 创建者:WenJY
|
|
|
|
|
|
* 电子邮箱:
|
|
|
|
|
|
* 创建时间:2026-02-25 14:49:37
|
|
|
|
|
|
* 版本:V1.0.0
|
|
|
|
|
|
* 描述:
|
|
|
|
|
|
*
|
|
|
|
|
|
*--------------------------------------------------------------------
|
|
|
|
|
|
* 修改人:
|
|
|
|
|
|
* 时间:
|
|
|
|
|
|
* 修改说明:
|
|
|
|
|
|
*
|
|
|
|
|
|
* 版本:V1.0.0
|
|
|
|
|
|
*--------------------------------------------------------------------*/
|
|
|
|
|
|
#endregion << 版 本 注 释 >>
|
|
|
|
|
|
namespace Sln.Wcs.HikRoBotSdk.Dto.CancelTask
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 任务取消请求参数
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public class CancelTaskDto
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 请求编号,每个请求都要一个唯一编号, 同一个请求重复提交, 使用同一编号。;
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string reqCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 请求时间截 格式: “yyyy-MM-dd HH:mm:ss”。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string reqTime { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 客户端编号,如PDA,HCWMS等。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string clientCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 令牌号, 由调度系统颁发
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string tokenCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 工作位,与RCS-2000端配置的位置名称一致。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string forceCancel { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// 货架号,采用货架号触发的方式。
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public string matterArea { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string agvCode { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public string taskCode { get; set; }
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|