namespace BWP.ABCClient.B2B
|
|
{
|
|
public static class TrxStatus
|
|
{
|
|
public const string CANCEL = "5";
|
|
public const string CHECK = "1";
|
|
public const string FAILURE = "3";
|
|
public const string NO_RESPONSE = "9";
|
|
public const string ORIGINAL = "0";
|
|
public const string REJECT = "4";
|
|
public const string SUCCESS = "2";
|
|
}
|
|
}
|