wxr
2019-11-25 29a6e6d747d13fc285c8dd86649417f60613388f
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;
 
namespace HDL_ON
{
    [System.Serializable]
    public class ResultStatus
    {
        /// <summary>
        /// 状态码
        /// </summary>
        public int Code;
 
        /// <summary>
        /// 状态
        /// </summary>
        public string Status;
 
        /// <summary>
        /// 当前账户ID
        /// </summary>
        public int ID;
 
        /// <summary>
        /// 信号值
        /// </summary>
        public int Flag;
 
        /// <summary>
        /// 账户类型
        /// </summary>
        public int AccountType;
 
        /// <summary>
        /// 主账号ID
        /// </summary>
        public int MasterID;
    }
}