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.

69 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 SaobeiRefundParam : 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>
/// 接口类型当前类型030
/// </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("refund_fee")]
public string Refund_fee { get; set; }
/// <summary>
/// 订单号,查询凭据,利楚订单号、微信订单号、支付宝订单号任意一个
/// </summary>
[JsonProperty("out_trade_no")]
public string Out_trade_no { get; set; }
}
}