wms_serve_m_jingwangchengpin/WmsMobileServe/ApiClient/Mes/Dto/GetOutBoxInfoResp.cs
2025-01-08 15:43:26 +08:00

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; }
}