using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace Model { public class GwStatisV3 { /// /// 用来导出类 /// 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; } } } }