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
 
namespace Dao
{
  public class GwStatisItem
  {
    public string Title { get; set; }
 
    public int APID { get; set; }
 
    public int OPID { get; set; }
 
    public string SpID { get; set; }
 
    public string ClientID { get; set; }
 
    public int CntDELIVRD { get; set; }
 
    public int CntSUBMITED { get; set; }
 
    public int CntDEDUCTED { get; set; }
 
    public int CntUnknown { get; set; }
 
    public int CntTOTAL { get; set; }
 
    public int CntREJECTED { get; set; }
 
    public int CntAPFAILED { get; set; }
 
    public int CntOPFAILED { get; set; }
  }
}