|
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; }
|
}
|
}
|