40 lines
996 B
C#
40 lines
996 B
C#
|
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; }
|
|||
|
}
|
|||
|
}
|