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

18 lines
370 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// SignResultValue Data Structure.
/// </summary>
[Serializable]
public class SignResultValue : AopObject
{
/// <summary>
/// 已生效的销账/出账机构
/// </summary>
[JsonProperty("effect_biz_value")]
public string EffectBizValue { get; set; }
}
}