NewGaoKaoApi/PaymentSDK/AliPay/Domain/AntMerchantExpandShopConsul...

169 lines
6.1 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AntMerchantExpandShopConsultModel Data Structure.
/// </summary>
[Serializable]
public class AntMerchantExpandShopConsultModel : AopObject
{
/// <summary>
/// 门店结算卡信息。本业务当前只允许传入一张结算卡
/// </summary>
[XmlArray("biz_cards")]
[XmlArrayItem("settle_card_info")]
public List<SettleCardInfo> BizCards { get; set; }
/// <summary>
/// 品牌id
/// </summary>
[XmlElement("brand_id")]
public string BrandId { get; set; }
/// <summary>
/// 经营地址。地址对象中省、市、区、地址必填,其余选填
/// </summary>
[XmlElement("business_address")]
public AddressInfo BusinessAddress { get; set; }
/// <summary>
/// 店铺经营时间。
/// </summary>
[XmlArray("business_time")]
[XmlArrayItem("shop_business_time")]
public List<ShopBusinessTime> BusinessTime { get; set; }
/// <summary>
/// 营业执照图片url。其值为使用ant.merchant.expand.indirect.image.upload上传图片得到的一串oss key。当店铺类目为特殊行业时必填
/// </summary>
[XmlElement("cert_image")]
public string CertImage { get; set; }
/// <summary>
/// 营业执照名称,填写值为营业执照或统一社会信用代码证上的名称。当店铺类目是特殊类目是要求必填
/// </summary>
[XmlElement("cert_name")]
public string CertName { get; set; }
/// <summary>
/// 证件号码。请填写店铺营业执照号。当店铺类目是特殊类目是要求必填
/// </summary>
[XmlElement("cert_no")]
public string CertNo { get; set; }
/// <summary>
/// 证件类型取值范围201营业执照2011:多证合一(统一社会信用代码)。当店铺类目是特殊类目是要求必填
/// </summary>
[XmlElement("cert_type")]
public string CertType { get; set; }
/// <summary>
/// 联系人信息。如果填写,其中名称必填,联系方式至少填写一项
/// </summary>
[XmlArray("contact_infos")]
[XmlArrayItem("contact_info")]
public List<ContactInfo> ContactInfos { get; set; }
/// <summary>
/// 店铺联系手机,与店铺联系固话二选一必填
/// </summary>
[XmlElement("contact_mobile")]
public string ContactMobile { get; set; }
/// <summary>
/// 店铺的联系固话,和店铺联系手机二选一必填
/// </summary>
[XmlElement("contact_phone")]
public string ContactPhone { get; set; }
/// <summary>
/// 扩展信息列表。key值需要向对应行业的bd进行申请。
/// </summary>
[XmlArray("ext_infos")]
[XmlArrayItem("shop_ext_info")]
public List<ShopExtInfo> ExtInfos { get; set; }
/// <summary>
/// 商户角色id表示将要开的店属于哪个商户角色。对于直连开店场景填写商户pid对于间连开店场景线上、线下、直付通填写商户smid
/// </summary>
[XmlElement("ip_role_id")]
public string IpRoleId { get; set; }
/// <summary>
/// 法人身份证号。当店铺类目是特殊类目是要求必填
/// </summary>
[XmlElement("legal_cert_no")]
public string LegalCertNo { get; set; }
/// <summary>
/// 法人名称。当店铺类目是特殊类目是要求必填
/// </summary>
[XmlElement("legal_name")]
public string LegalName { get; set; }
/// <summary>
/// 营业执照授权函。其值为使用ant.merchant.expand.indirect.image.upload上传图片得到的一串oss key。当店铺类目是特殊行业时必填
/// </summary>
[XmlElement("license_auth_letter_image")]
public string LicenseAuthLetterImage { get; set; }
/// <summary>
/// 备注
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 门头照其值为使用ant.merchant.expand.indirect.image.upload上传图片得到的一串oss key。当店铺类目是特殊类目是要求必填
/// </summary>
[XmlElement("out_door_images")]
public string OutDoorImages { get; set; }
/// <summary>
/// 行业特殊资质。当店铺类目是特殊类目是要求必填
/// </summary>
[XmlArray("qualifications")]
[XmlArrayItem("industry_qualification_info")]
public List<IndustryQualificationInfo> Qualifications { get; set; }
/// <summary>
/// 场景
/// </summary>
[XmlElement("scene")]
public string Scene { get; set; }
/// <summary>
/// 结算支付宝账号的登录号
/// </summary>
[XmlElement("settle_alipay_logon_id")]
public string SettleAlipayLogonId { get; set; }
/// <summary>
/// 店铺类目取值参见文件xxxxxxx
/// </summary>
[XmlElement("shop_category")]
public string ShopCategory { get; set; }
/// <summary>
/// 店铺名称。直连开店要保证全局店铺名称+地址唯一间连开店要保证服务商pid下店铺名称+地址唯一
/// </summary>
[XmlElement("shop_name")]
public string ShopName { get; set; }
/// <summary>
/// 店铺经营类型01表示直营02表示加盟
/// </summary>
[XmlElement("shop_type")]
public string ShopType { get; set; }
/// <summary>
/// 门店编号表示该门店在该商户角色id(直连pid间连smid)下,由商户自己定义的外部门店编号
/// </summary>
[XmlElement("store_id")]
public string StoreId { get; set; }
}
}