30 lines
745 B
C#
30 lines
745 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace WebService.SDK.ALLinPay
|
|
{
|
|
/// <summary>
|
|
/// 通联支付API枚举
|
|
/// </summary>
|
|
public class ALLinPayDictionary
|
|
{
|
|
public enum PayStatus
|
|
{
|
|
交易成功 = 0000,
|
|
交易处理中1 = 2000,
|
|
交易处理中2 = 2008,
|
|
交易金额小于应收手续费 = 3014,
|
|
校验实名信息失败 = 3031,
|
|
其他错误1=3045,
|
|
交易未支付 = 3088,
|
|
撤销异常=3089,
|
|
渠道商户错误 = 3099,
|
|
流水号重复 = 3888,
|
|
交易控制失败 = 3889,
|
|
其他错误2 = 3999
|
|
}
|
|
}
|
|
}
|