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

50 lines
1.7 KiB
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 System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayOpenPublicInfoModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenPublicInfoModifyModel : AopObject
{
/// <summary>
/// 服务窗名称2-20个字之间不得含有违反法律法规和公序良俗的相关信息不得侵害他人名誉权、知识产权、商业秘密等合法权利不得以太过广泛的、或产品、行业词组来命名女装、皮革批发不得以实名认证的媒体资质账号创建服务窗或媒体相关名称命名服务窗XX电视台、XX杂志等
/// </summary>
[JsonProperty("app_name")]
public string AppName { get; set; }
/// <summary>
/// 授权运营书企业商户若为被经营方授权需上传加盖公章的扫描件请使用照片上传接口上传图片获得image_url
/// </summary>
[JsonProperty("auth_pic")]
public string AuthPic { get; set; }
/// <summary>
/// 营业执照地址,建议尺寸 320 x 320px支持.jpg .jpeg .png 格式小于3M
/// </summary>
[JsonProperty("license_url")]
public string LicenseUrl { get; set; }
/// <summary>
/// 服务窗头像地址,建议尺寸 320 x 320px支持.jpg .jpeg .png 格式小于3M
/// </summary>
[JsonProperty("logo_url")]
public string LogoUrl { get; set; }
/// <summary>
/// 服务窗欢迎语200字以内首次使用服务窗必须
/// </summary>
[JsonProperty("public_greeting")]
public string PublicGreeting { get; set; }
/// <summary>
/// 门店照片Url
/// </summary>
[JsonProperty("shop_pics")]
public List<string> ShopPics { get; set; }
}
}