19 lines
382 B
C#
19 lines
382 B
C#
|
|
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; }
|
|||
|
|
}
|