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.

68 lines
1.9 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 Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace POSV.Payment.Saobei.Parameter
{
public class SaobeiPaymentParam : SaobeiJsonRequestParam
{
/// <summary>
/// 版本号当前版本100
/// </summary>
[JsonProperty("pay_ver")]
public string Pay_ver { get; set; }
/// <summary>
/// 请求类型010微信020 支付宝060qq钱包080京东钱包090口碑100翼支付110银联二维码000自动识别类型
/// </summary>
[JsonProperty("pay_type")]
public string Pay_type { get; set; }
/// <summary>
/// 接口类型当前类型010
/// </summary>
[JsonProperty("service_id")]
public string Service_id { get; set; }
/// <summary>
/// 商户号
/// </summary>
[JsonProperty("merchant_no")]
public string Merchant_no { get; set; }
/// <summary>
/// 终端号
/// </summary>
[JsonProperty("terminal_id")]
public string Terminal_id { get; set; }
/// <summary>
/// 终端流水号,填写商户系统的订单号
/// </summary>
[JsonProperty("terminal_trace")]
public string Terminal_trace { get; set; }
/// <summary>
/// 终端交易时间yyyyMMddHHmmss全局统一时间格式
/// </summary>
[JsonProperty("terminal_time")]
public string Terminal_time { get; set; }
/// <summary>
/// 授权码,客户的付款码
/// </summary>
[JsonProperty("auth_no")]
public string Auth_no { get; set; }
/// <summary>
/// 金额,单位分
/// </summary>
[JsonProperty("total_fee")]
public string Total_fee { get; set; }
}
}