wcs_server_kate_suzhou/WcsMain/ApiClient/DataEntity/WmsEntity/WmsResponse.cs

19 lines
382 B
C#
Raw Normal View History

using Newtonsoft.Json;
using System.Text.Json.Serialization;
2024-05-14 16:30:56 +08:00
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
public class WmsResponse
{
/// <summary>
/// 代码
/// </summary>
[JsonProperty("code")]
2024-05-14 16:30:56 +08:00
public int? Code { get; set; }
/// <summary>
/// 信息
/// </summary>
[JsonProperty("message")]
2024-05-14 16:30:56 +08:00
public string? Message { get; set; }
}