using System; using System.Collections.Generic; using System.Text; namespace wms.dto.response.share { public class agvCallbackResponse { /// /// 返回码 /// public string code { get; set; } = "0"; /// /// 返回消息 /// public string message { get; set; } = "成功"; /// /// 请求编号 /// public string reqCode { get; set; } } }