namespace molilian.core { /// /// 联盟转链请求参数对象 /// public class UnionParseRequest { /// /// 待转链内容 /// public string Content { get; set; } = string.Empty; /// /// 渠道(tb/jd/pdd/ks/dy等) /// public string Channel { get; set; } = string.Empty; /// /// 商业类型 /// public int CommerceType { get; set; } /// /// IP地址 /// public string Ip { get; set; } = string.Empty; /// /// OAID标识 /// public string Oaid { get; set; } = string.Empty; /// /// 风控策略 /// public string RiskStrategy { get; set; } = string.Empty; /// /// 启动场景 /// public int LaunchScene { get; set; } = -1; /// /// 账号ID /// public int AccountId { get; set; } = 0; /// /// 特殊文本标识(-1:不限制, 1:特殊文本) /// public int SpecialText { get; set; } = -1; /// /// 查询文本 /// public string QueryText { get; set; } = string.Empty; /// /// 点击ID /// public string ClickId { get; set; } = string.Empty; /// /// 类型(dp/goods等) /// public string Type { get; set; } = string.Empty; } }