using Newtonsoft.Json;
using System.Text.Json.Serialization;
namespace WcsMain.ApiClient.DataEntity.WmsEntity;
public class WmsResponse
{
///
/// 代码
///
[JsonProperty("code")]
public int? Code { get; set; }
///
/// 信息
///
[JsonProperty("message")]
public string? Message { get; set; }
}