Files
“wanyongkang” ed3b2c653e 接口文件
2024-04-10 13:55:27 +08:00

30 lines
583 B
C#

using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// InsMerchant Data Structure.
/// </summary>
[Serializable]
public class InsMerchant : AopObject
{
/// <summary>
/// 机构全称
/// </summary>
[JsonProperty("name")]
public string Name { get; set; }
/// <summary>
/// 服务电话
/// </summary>
[JsonProperty("service_phone")]
public string ServicePhone { get; set; }
/// <summary>
/// 机构简称
/// </summary>
[JsonProperty("short_name")]
public string ShortName { get; set; }
}
}