using System;
using System.Collections.Generic;
using System.Text;
namespace New_College.Model.ViewModels
{
public class AliPayOrderResponse
{
///
/// 通知时间
///
public string notify_time { get; set; }
///
/// 通知的类型
///
public string notify_type { get; set; }
///
/// 通知校验ID
///
public string notify_id { get; set; }
///
/// 开发者的app_id
///
public string app_id { get; set; }
///
/// 编码格式
///
public string charset { get; set; }
///
/// 接口版本
///
public string version { get; set; }
///
/// 签名类型
///
public string sign_type { get; set; }
///
/// 签名
///
public string sign { get; set; }
///
/// 支付宝交易号
///
public string trade_no { get; set; }
///
/// 商户订单号
///
public string out_trade_no { get; set; }
///
/// 商户业务号
///
public string out_biz_no { get; set; }
///
/// 买家支付宝用户号
///
public string buyer_id { get; set; }
///
/// 买家支付宝账号
///
public string buyer_logon_id { get; set; }
///
/// 卖家支付宝用户号
///
public string seller_id { get; set; }
///
/// 卖家支付宝账号
///
public string seller_email { get; set; }
///
/// 交易状态
///
public string trade_status { get; set; }
///
/// 订单金额
///
public decimal total_amount { get; set; }
///
/// 实收金额
///
public decimal receipt_amount { get; set; }
///
/// 付款金额
///
public decimal buyer_pay_amount { get; set; }
///
/// 标题
///
public string subject { get; set; }
///
/// 描述
///
public string body { get; set; }
///
/// 交易创建时间
///
public string gmt_create { get; set; }
///
/// 交易付款时间
///
public string gmt_payment { get; set; }
///
/// 交易结束时间
///
public string gmt_close { get; set; }
}
}