30 lines
951 B
C#
30 lines
951 B
C#
|
namespace Api.Framework.Data.TB
|
|||
|
{
|
|||
|
public class TBGoodParsingData
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 商品ID
|
|||
|
/// </summary>
|
|||
|
public string ItemId { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 原始消息中包含商品ID的关键词
|
|||
|
/// </summary>
|
|||
|
public string OriginalKeyWord { get; set; }
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 是否是解析口令
|
|||
|
/// </summary>
|
|||
|
public bool IsParsingPass { get; set; } = false;
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 淘宝场景ID 【1-动态ID转链场景(支持新商品ID转换),2-消费者比价场景(支持原始商品ID转新商品ID),3-商品库导购场景(支持库内B段新商品ID转换)(不填默认为1)】
|
|||
|
/// </summary>
|
|||
|
public string BizSceneId { get; set; } = "2";
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 指定的优惠券信息
|
|||
|
/// </summary>
|
|||
|
public string ActivityId { get; set; }
|
|||
|
}
|
|||
|
}
|