using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// CraftsmanShopRelationOpenModel Data Structure. /// [Serializable] public class CraftsmanShopRelationOpenModel : AopObject { /// /// 推荐权重。整数。小于等于0表示不在口碑店铺页展示 大于0表示在口碑店铺页展示, 值越大,排序越靠前。 /// [XmlElement("recommend_weight")] public long RecommendWeight { get; set; } /// /// 口碑门店ID,可通过门店摘要信息批量查询接口 alipay.offline.market.shop.summary.batchquery获取。 /// [XmlElement("shop_id")] public string ShopId { get; set; } } }