yzh
2022-06-30 ba73ec7987459b7bc5710798e8b4989cfe0e13a2
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
 
namespace Model
{
    public class GwStatisV3
    {
        /// <summary>
        /// 用来导出类
        /// </summary>
        private int _id;
        private string _date;//日期
        private string _apName;//接入点
        private string _opName;//通道
        private string _spId;//账号
        private string _clientId;//代理商
 
        private string _apReciveTotal;//ap提交总量
        private string _apSubFailed;//Ap提交失败
        private string _apNotForwarded;//ap未转发
        private string _apFailed;//ap失败
        private string _apUnkown;//ap未知
        private string _apNeedReturn;//ap需返环
 
        private string _opSubTotal;//op提交总量
        private string _opFailed;//op失败
        private string _opUnkown;//op未知
        private string _opSuccess;//op成功
 
        private string _opSuccessRate;//op成功率
        private string _opReportRate;//op状态报告率
 
 
        public int Id
        {
            get { return this._id; }
            set { _id = value; }
        }
 
        public string ApFailed
        {
            get { return _apFailed; }
            set { _apFailed = value; }
        }
 
        public string Date
        {
            get { return this._date; }
            set { _date = value; }
        }
 
        public string ApName
        {
            get { return _apName; }
            set { _apName = value; }
        }
 
        public string OpName
        {
            get { return _opName; }
            set { _opName = value; }
        }
 
        public string SpId
        {
            get { return _spId; }
            set { _spId = value; }
        }
 
        public string ClientId
        {
            get { return _clientId; }
            set { _clientId = value; }
        }
 
        public string ApReciveTotal
        {
            get { return _apReciveTotal; }
            set { _apReciveTotal = value; }
        }
 
        public string ApSubFailed
        {
            get { return _apSubFailed; }
            set { _apSubFailed = value; }
        }
 
        public string ApNotForwarded
        {
            get { return _apNotForwarded; }
            set { _apNotForwarded = value; }
        }
 
        public string ApUnkown
        {
            get { return _apUnkown; }
            set { _apUnkown = value; }
        }
 
        public string ApNeedReturn
        {
            get { return _apNeedReturn; }
            set { _apNeedReturn = value; }
        }
 
        public string OpSubTotal
        {
            get { return _opSubTotal; }
            set { _opSubTotal = value; }
        }
 
        public string OpFailed
        {
            get { return _opFailed; }
            set { _opFailed = value; }
        }
 
        public string OpUnkown
        {
            get { return _opUnkown; }
            set { _opUnkown = value; }
        }
 
        public string OpSuccess
        {
            get { return _opSuccess; }
            set { _opSuccess = value; }
        }
 
        public string OpSuccessRate
        {
            get { return _opSuccessRate; }
            set { _opSuccessRate = value; }
        }
 
        public string OpReportRate
        {
            get { return _opReportRate; }
            set { _opReportRate = value; }
        }
    }
}