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