kazelee
2025-05-13 78603aecf895b2615ea5bdc1908b54c0f01a1880
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System.Collections.Generic;
 
using Newtonsoft.Json;
 
namespace HH.WCS.Mobox3.AnGang.Dtos.Response {
    public class MoboxResponse {
        /// <summary>
        /// Mobox 接口返回
        /// </summary>
        public class SimpleResult {
            [JsonProperty("resultCode")]
            public int Code { get; set; }
 
            [JsonProperty("resultMsg")]
            public string Message { get; set; }
 
            [JsonProperty("result")]
            public List<object> Results { get; set; } = new List<object>();
        }
    }
}