using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace WCS.WorkEngineering.WebApi.Models.AGV.Response { /// /// 取消任务返回接口 /// public class CancelTaskResponse { /// /// 返回码 /// public string code { get; set; } /// /// 返回消息 /// public string message { get; set; } /// /// 请求编号 /// public string reqCode { get; set; } } }