using System.Collections.Generic;
namespace ProductClient.Entitys
{
///
/// 代运营朋友圈任务数据
///
public class DaiYunYingCircleTaskData
{
///
///
///
public Result Result { get; set; }
///
///
///
public int Code { get; set; }
///
///
///
public string Message { get; set; }
}
public class MediaList
{
///
///
///
public string Id { get; set; }
///
///
///
public string Type { get; set; }
///
///
///
public string Title { get; set; }
///
///
///
public string Description { get; set; }
///
///
///
public string Private { get; set; }
///
///
///
public string Url { get; set; }
///
///
///
public string UrlAttributeType { get; set; }
///
///
///
public string UrlAttributeMd5 { get; set; }
///
///
///
public string Thumb { get; set; }
///
///
///
public string ThumbAttributeType { get; set; }
///
///
///
public string VideoDuration { get; set; }
///
///
///
public string SizeAttributeTotalSize { get; set; }
///
///
///
public string SizeAttributeWidth { get; set; }
///
///
///
public string SizeAttributeHeight { get; set; }
}
///
/// 商品解析后的数据
///
public class ItemData
{
///
/// 商品地址
///
public string ItemUrl { get; set; }
///
/// 商品Id
///
public string ItemId { get; set; }
///
/// 推广ID
///
public string PromotionId { get; set; }
///
/// 商店ID
///
public string ShopId { get; set; }
///
/// 原始消息中包含商品ID的关键词
///
public string OriginalKeyWord { get; set; }
///
/// 是否是解析口令
///
public bool IsParsingPass { get; set; } = false;
///
/// 淘宝场景ID 【1-动态ID转链场景(支持新商品ID转换),2-消费者比价场景(支持原始商品ID转新商品ID),3-商品库导购场景(支持库内B段新商品ID转换)(不填默认为1)】
///
public string BizSceneId { get; set; } = "2";
///
/// 优惠券Id
///
public string ActivityId { get; set; }
///
/// 联盟类型
///
public LianMengType LmType { get; set; }
}
///
/// 评论集合
///
public class CommentList
{
///
/// 评论
///
public string Comment { get; set; }
///
/// 解析的口令
///
public string ParsingGoodsKeyWord { get; set; }
///
/// 商品解析后的数据
///
public ItemData ItemData { get; set; }
}
///
/// 数据
///
public class Result
{
///
/// 跟发的朋友圈Id
///
public string OriginalId { get; set; }
///
/// 跟发的朋友圈原始数据
///
public string OriginalXml { get; set; }
///
/// 朋友圈正文
///
public string Describe { get; set; }
///
/// 朋友圈图片
///
public List MediaList { get; set; }
///
/// 评论
///
public List CommentList { get; set; }
}
///
/// 联盟类型
///
public enum LianMengType : int
{
///
/// 淘宝
///
淘宝联盟 = 1,
///
/// 京东
///
京东联盟 = 2,
///
/// 拼多多
///
拼多多联盟 = 3,
///
/// 唯品会
///
唯品会联盟 = 4,
///
/// 苏宁
///
苏宁联盟 = 5,
///
/// 抖音
///
抖音联盟 = 6,
///
/// 美团
///
美团分销联盟 = 7,
///
/// 快手联盟
///
快手联盟 = 8,
///
/// 默认
///
无 = 0
}
}