Skip to content

Commit

Permalink
Update BusinessParams.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
roc916 authored Nov 2, 2023
1 parent 4cc1275 commit daba6fe
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/Essensoft.Paylink.Alipay/Domain/BusinessParams.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,34 @@ public class BusinessParams : AlipayObject
[JsonPropertyName("card_type")]
public string CardType { get; set; }

/// <summary>
/// 因公付金额
/// </summary>
[JsonPropertyName("enterprise_pay_amount")]
public string EnterprisePayAmount { get; set; }

/// <summary>
/// 因公付业务信息
/// </summary>
[JsonPropertyName("enterprise_pay_info")]
public string EnterprisePayInfo { get; set; }

/// <summary>
/// 商户传入的交易税费。需要落地风控使用
/// </summary>
[JsonPropertyName("good_taxes")]
public string GoodTaxes { get; set; }

/// <summary>
/// 商户端创建订单的 IP,须上传正确的用户端外网 IP,支持 ipv4/ipv6 格式; mc_create_trade_ip和mcCreateTradeIp(旧)参数描述相同,首选mc_create_trade_ip入参,请勿重复入参; 如已入参mcCreateTradeIp(旧),无需新增入参mc_create_trade_ip。
/// </summary>
[JsonPropertyName("mc_create_trade_ip")]
public string McCreateTradeIp { get; set; }

/// <summary>
/// 当需要在 商家平台(b.alipay.com)—数据中心 中查看对应业务场景下的数据明细可以通过该参数传入 支持传入的值:<a target="_blank" href="https://opendocs.alipay.com/mini/08by8k?pathHash=96e03412">小程序细分业务场景</a>
/// </summary>
[JsonPropertyName("tiny_app_merchant_biz_type")]
public string TinyAppMerchantBizType { get; set; }
}
}

0 comments on commit daba6fe

Please sign in to comment.