using System;
using System.Collections.Generic;
using System.Text;
namespace wms.dto.response.hj
{
public class AgvCallbackResponse
{
///
/// 返回码 1:允许执行 0:不允许执行
///
public string code { get; set; } = "0";
///
/// 返回消息
///
public string message { get; set; } = "成功";
///
/// 请求编号
///
public string reqCode { get; set; }
}
///
/// AGV 返回结果code值枚举
///
public class AgvResponseCode
{
///
/// 成功
///
public static string Success { get; set; } = "0";
///
/// 失败
///
public static string Fail { get; set; } = "1";
///
/// 重复提交
///
public static string Repeat { get; set; } = "6";
///
/// 失败,未知异常
///
public static string Error { get; set; } = "99";
}
}