1234567891011121314151617181920 |
- namespace WCS.WorkEngineering.WebApi.Models.AGV.Response
- {
- public class AgvCallbackResponse
- {
- /// <summary>
- /// 返回码 1:允许执行 0:不允许执行
- /// </summary>
- public string code { get; set; } = "0";
- /// <summary>
- /// 返回消息
- /// </summary>
- public string message { get; set; } = "成功";
- /// <summary>
- /// 请求编号
- /// </summary>
- public string reqCode { get; set; }
- }
- }
|