You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.5 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Payment.AllinPay.Models
{
public abstract class BaseResultInfo
{
///// <summary>
///// AOP平台时间戳格式为yyyyMMddHHmmss例如20110125010101。
///// </summary>
//public string res_timestamp { get; set; }
///// <summary>
///// API输入参数签名结果原字符串拼装方式密钥+ “app_key”+value+”method”+value+” order_id”+value+” res_timestamp”+value+”sign_v”+value+” timestamp”+value+”v”+value+密钥 ,其中 order_id 如查询类交易没有,或为空则不参与原字符串的拼装
///// </summary>
//public string res_sign { get; set; }
/// <summary>
/// 网关返回码
/// 成功为10000其余为失败
/// </summary>
public string code { get; set; }
/// <summary>
/// 网关返回码描述
/// </summary>
public string msg { get; set; }
/// <summary>
/// 业务返回码
/// 服务调用成功时返回“OK”失败时返回具体的错误码
/// </summary>
public string subCode { get; set; }
/// <summary>
/// 业务返回码描述
/// </summary>
public string subMsg { get; set; }
/// <summary>
/// 签名
/// </summary>
public string sign { get; set; }
public string data { get; set; }
}
}