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

19 lines
400 B
C#
Raw Permalink Normal View History

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