Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/MerchantInstConfig.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

36 lines
978 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// MerchantInstConfig Data Structure.
/// </summary>
[Serializable]
public class MerchantInstConfig : AopObject
{
/// <summary>
/// 机构短名称,既是合作机构的英文简称,用来标识该机构的唯一性;
/// </summary>
[JsonProperty("en_name")]
public string EnName { get; set; }
/// <summary>
/// 支付宝定义的业务类型JF表示公共事业缴费HK表示信用卡还款具体见附录描述
/// </summary>
[JsonProperty("order_type")]
public string OrderType { get; set; }
/// <summary>
/// 业务场景;分为销帐(chargeoff)和输出(EXTERNAL)
/// </summary>
[JsonProperty("scene")]
public string Scene { get; set; }
/// <summary>
/// 合作机构中文名称如HZCB中文名称杭州银行
/// </summary>
[JsonProperty("zh_name")]
public string ZhName { get; set; }
}
}