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; }
}
public class WmsResponse : WmsResponse
{
[JsonProperty("data")]
public T? Data { get; set; }
}