NewGaoKaoApi/PaymentSDK/AliPay/Domain/CraftsmanShopRelationOpenMo...

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