Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayAccountExrateAllclientrateQueryModel.cs
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

25 lines
751 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;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayAccountExrateAllclientrateQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayAccountExrateAllclientrateQueryModel : AopObject
{
/// <summary>
/// 客户id客户和报价中心签约时约定的信息
/// </summary>
[JsonProperty("client_id")]
public string ClientId { get; set; }
/// <summary>
/// 子协议扩展号同一个客户不同业务场景下需要不同的客户报价通过profile_id区分。正常情况下可能每个客户只有一个默认的profile_id
/// </summary>
[JsonProperty("profile_id")]
public string ProfileId { get; set; }
}
}