using System; using System.Xml.Serialization; using System.Collections.Generic; namespace Aop.Api.Domain { /// /// AntMerchantExpandIsvShopCreateModel Data Structure. /// [Serializable] public class AntMerchantExpandIsvShopCreateModel : AopObject { /// /// 地址。商户详细经营地址或人员所在地点 /// [XmlElement("address")] public string Address { get; set; } /// /// 门店地址备注,如:地铁口左边 /// [XmlElement("address_memo")] public string AddressMemo { get; set; } /// /// 门店实景图列表。最多3张,必须是实景图,不可有水印(如果上传装修效果图将驳回)。json格式字符串 支持格式:jpg/png/jpeg/bmp,单张图片不超过5MB,建议尺寸在2000*1500以上。 /// [XmlElement("attachment_list")] public string AttachmentList { get; set; } /// /// 门店对应的业务类型,可以对应团餐业务:CATERING_DEVICE; /// [XmlElement("biz_type")] public string BizType { get; set; } /// /// 店铺经营时间。 /// [XmlArray("business_time")] [XmlArrayItem("shop_business_time")] public List BusinessTime { get; set; } /// /// 学校对应的商户PID /// [XmlElement("campus_id")] public string CampusId { get; set; } /// /// 所选学校。指定门店类目下需要上传大学名称信息。 /// [XmlElement("campus_name")] public string CampusName { get; set; } /// /// 类目标签。选择部分门店类目时,必须要传此值。 比如:校园团餐类目 与类目的映射关系,请参考 /// [XmlElement("category_label")] public string CategoryLabel { get; set; } /// /// 城市编码,国标码 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 店铺联系手机,与店铺联系固话二选一必填 /// [XmlElement("contact_mobile")] public string ContactMobile { get; set; } /// /// 店铺的联系固话,和店铺联系手机二选一必填 /// [XmlElement("contact_phone")] public string ContactPhone { get; set; } /// /// 区县编码,区县编码是与国家统计局一致,请查询: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/ 国标省市区号下载:http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7629140.0.0.qRW4KQ&file=2016.xls /// [XmlElement("district_code")] public string DistrictCode { get; set; } /// /// ISV联系人手机号码 /// [XmlElement("isv_contact_mobile")] public string IsvContactMobile { get; set; } /// /// 联系人名字 /// [XmlElement("isv_contact_name")] public string IsvContactName { get; set; } /// /// 备注 /// [XmlElement("memo")] public string Memo { get; set; } /// /// 商户id,表示将要开的店属于哪个商户。 /// [XmlElement("pid")] public string Pid { get; set; } /// /// 省份编码,国标码。请查询: http://www.stats.gov.cn/tjsj/tjbz/tjyqhdmhcxhfdm/ 国标省市区号下载:http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls?spm=a219a.7629140.0.0.qRW4KQ&file=2016.xls /// [XmlElement("province_code")] public string ProvinceCode { get; set; } /// /// 资质证明图片。其值为使用ant.merchant.expand.indirect.image.upload上传图片得到的一串oss key列表,json格式字符串,最多可以上传10张 /// [XmlElement("qualification_proof_list")] public string QualificationProofList { get; set; } /// /// 资质证明类型。具体选值参见https://mif-pub.alipayobjects.com/QualificationType.xlsx /// [XmlElement("qualification_proof_type")] public string QualificationProofType { get; set; } /// /// 店铺类目,取值参见文件xxxxxxx /// [XmlElement("shop_category")] public string ShopCategory { get; set; } /// /// 店铺名称。直连开店要保证全局店铺名称+地址唯一 /// [XmlElement("shop_name")] public string ShopName { get; set; } /// /// 店铺经营类型,01表示直营,02表示加盟 /// [XmlElement("shop_type")] public string ShopType { get; set; } /// /// 外部门店编号,由商户用户自己定义的外部门店编号,同一个商户下门店编号不能重复,否则会创建失败 /// [XmlElement("store_id")] public string StoreId { get; set; } } }