using System;
using System.Collections.Generic;
using System.Text;
namespace WCS.WorkEngineering.WebApi.Models
{
public class AgvCallbackResponse
{
///
/// 返回码 1:允许执行 0:不允许执行
///
public string code { get; set; } = "0";
///
/// 返回消息
///
public string message { get; set; } = "成功";
///
/// 请求编号
///
public string reqCode { get; set; }
}
}