using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace HH.WCS.Mobox3.DSZSH.Dtos.Response {
|
public class AgvResponse : BaseResponse {
|
/// <summary>
|
/// 返回给 HostToAgv
|
/// </summary>
|
public class ReturnResult {
|
public int ResultCode { get; set; }
|
public string ResultMsg { get; set; }
|
}
|
|
}
|
}
|