15 lines
291 B
C#
15 lines
291 B
C#
|
|
using System.Xml.Serialization;
|
|||
|
|
|
|||
|
|
namespace WmsMobileServe.ApiClient.Mes.Dto;
|
|||
|
|
|
|||
|
|
/// <summary>
|
|||
|
|
/// 请求MES获取箱号的返回值
|
|||
|
|
/// </summary>
|
|||
|
|
[XmlRoot("string", Namespace = "http://tempuri.org/")]
|
|||
|
|
public class GetOutBoxInfoResp
|
|||
|
|
{
|
|||
|
|
[XmlText]
|
|||
|
|
public string? Data { get; set; }
|
|||
|
|
|
|||
|
|
}
|