1
dengjunjie
2025-09-29 d9c99e0480b4910cdb134778dd5c314b35ec4cf2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 
using System.Collections;
using System.Collections.Generic;
 
namespace WIDESEA_Common
{
    public class WMSResponseContent
    {
        /// <summary>
        /// false:失败,true:成功
        /// </summary>
        public bool success { get; set; }
        /// <summary>
        /// 200成功否则失败
        /// </summary>
        public int code { get; set; }
        /// <summary>
        /// 返回消息
        /// </summary>
        public string msg { get; set; }
        /// <summary>
        /// 数据
        /// </summary>
        public object data { get; set; }
 
    }
}