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