colly_wyx
2018-06-14 bef2c06923d3ba6727654f734bb93d5a09855dc5
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
 
namespace PhalApiClientSDK
{
    /**
     * 接口返回结果
     *
     * - 与接口返回的格式对应,即有:ret/data/msg
     */
    public class PhalApiClientResponse
    {
        public int ret { get; set; }
 
        public dynamic data { get; set; }
 
        public String msg { get; set; }
 
        
 
        /**
         * 完全构造函数
         * @param int ret
         * @param JSONObject data
         * @param String msg
         */
        public PhalApiClientResponse(int ret, dynamic data, String msg)
        {
            this.ret = ret;
            this.data = data;
            this.msg = msg;
        }
 
        public PhalApiClientResponse(int ret, dynamic data)
        {
            this.ret = ret;
            this.data = data;
            this.msg = "";
        }
 
        public PhalApiClientResponse(int ret)
        {
            this.ret = ret;
            this.data = "";
            this.msg = "";
        }
        public PhalApiClientResponse()
        {
            
        }
    }
}