333
This commit is contained in:
@@ -0,0 +1,39 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace MyCode.Project.Domain.Businesses.Payments
|
||||
{
|
||||
/// <summary>
|
||||
/// 招商银行 支付参数配置
|
||||
/// </summary>
|
||||
public class CmbPayParamConfig
|
||||
{
|
||||
/// <summary>
|
||||
/// 商户号
|
||||
/// </summary>
|
||||
public string MchId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 应用密钥
|
||||
/// </summary>
|
||||
public string AppSecret { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 虚拟终端号 JH-XCX 小程序、公众号类使用
|
||||
/// </summary>
|
||||
public string Jhxcx { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 虚拟终端号 JH-TK 台卡、码牌、点餐码类使用
|
||||
/// </summary>
|
||||
public string Jhtk { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 虚拟终端号 JH-SYJ 收银机、扫码枪等使用
|
||||
/// </summary>
|
||||
public string Jhsyj { get; set; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user