using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace iWare.Wms.Application { public class AgvCommonResponseDto { /// /// 返回码 /// public string code { get; set; } /// /// 返回消息 /// public string message { get; set; } /// /// 请求编号 /// public string reqCode { get; set; } } }