初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,52 @@
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
/// <summary>
/// AlipayMobilePublicInfoQueryResponse.
/// </summary>
public class AlipayMobilePublicInfoQueryResponse : AopResponse
{
/// <summary>
/// 服务窗名称
/// </summary>
[JsonProperty("app_name")]
public string AppName { get; set; }
/// <summary>
/// 服务窗审核状态描述,如果审核驳回则有相关的驳回理由
/// </summary>
[JsonProperty("audit_desc")]
public string AuditDesc { get; set; }
/// <summary>
/// 服务窗审核状态对于系统商而言只有三个状态AUDITING审核中AUDIT_FAILED审核驳回AUDIT_SUCCESS审核通过
/// </summary>
[JsonProperty("audit_status")]
public string AuditStatus { get; set; }
/// <summary>
/// 服务窗是否上线T表示上线F表示未上线
/// </summary>
[JsonProperty("is_online")]
public string IsOnline { get; set; }
/// <summary>
/// 服务窗是否上架T表示上架上架即可在支付宝客户端被搜索到F表示未上架
/// </summary>
[JsonProperty("is_release")]
public string IsRelease { get; set; }
/// <summary>
/// 服务窗头像地址
/// </summary>
[JsonProperty("logo_url")]
public string LogoUrl { get; set; }
/// <summary>
/// 服务窗欢迎语
/// </summary>
[JsonProperty("public_greeting")]
public string PublicGreeting { get; set; }
}
}