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

23 lines
605 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
{
/// <summary>
/// 解析链接 (长短链接 s.click.taobao)
/// </summary>
public class AnalysisTkUrlData
{
/// <summary>
/// 商品id
/// </summary>
public string item_id { get; set; }
/// <summary>
/// 商品混淆id
/// </summary>
public string open_iid { get; set; }
/// <summary>
/// 1-动态ID转链场景2-消费者比价场景3-商品库导购场景不填默认为1
/// </summary>
public string biz_scene_id { get; set; }
}
}