old_flsystem/类库/Api.Framework/Data/TB/TBGoodParsingData.cs

30 lines
951 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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转新商品ID3-商品库导购场景支持库内B段新商品ID转换不填默认为1
/// </summary>
public string BizSceneId { get; set; } = "2";
/// <summary>
/// 指定的优惠券信息
/// </summary>
public string ActivityId { get; set; }
}
}