Files
YunTongJackYunTask/Reportapi/MyCode.Project.Domain/Message/Response/WMS/WMSResponse.cs

20 lines
463 B
C#
Raw Normal View History

2025-07-21 17:54:00 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace MyCode.Project.Domain.Message.Response.WMS
{
2025-07-22 14:09:17 +08:00
/// <summary>
/// WMS响应对象
/// </summary>
2025-07-21 17:54:00 +08:00
public class WMSResponse
{
2025-07-22 14:09:17 +08:00
public int? Code { get; set; }
2025-07-21 17:54:00 +08:00
public string Message { get; set; }
public Dictionary<string, string> Value { get; set; }
2025-07-22 14:09:17 +08:00
public int? View { get; set; }
2025-07-21 17:54:00 +08:00
}
}