JdDataDTO.cs 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. namespace molilian.core
  2. {
  3. public class JdDataDTO
  4. {
  5. public TkChannelEnum channel { get; set; }
  6. public LinkTypeEnum link_type { get; set; }
  7. public ChannelTypeEnum channel_type { get; set; } = ChannelTypeEnum.none;
  8. public int accountId { get; set; } = 0;
  9. public string accountName { get; set; } = string.Empty;
  10. public string proxy_name { get; set; } = string.Empty;
  11. public string proxy_node { get; set; } = string.Empty;
  12. public string curl_proxy { get; set; } = string.Empty;
  13. public bool success { get; set; } = true;
  14. public bool commercial { get; set; } = false;
  15. public string message { get; set; } = string.Empty;
  16. public string reason { get; set; } = string.Empty;
  17. public bool home_page { get; set; } = false;
  18. public string content { get; set; } = string.Empty;
  19. public string taoToken { get; set; } = string.Empty;
  20. public string rawContent { get; set; } = string.Empty;
  21. public string rawContent2 { get; set; } = string.Empty;
  22. public string ip { get; set; } = string.Empty;
  23. public string oaid { get; set; } = string.Empty;
  24. public string itemId { get; set; } = string.Empty;
  25. public string itemName { get; set; } = string.Empty;
  26. public decimal couponAmount { get; set; } = 0;
  27. public decimal promotionPrice { get; set; } = 0;
  28. public string pic { get; set; } = string.Empty;
  29. public string shortLinkurl { get; set; } = string.Empty;
  30. public string deeplink_url { get; set; } = string.Empty;
  31. public int elapsedTime { get; set; } = 0;
  32. public DateTime create_time { get; set; } = DateTime.Now;
  33. public string end_point { get; set; } = string.Empty;
  34. public int subCode { get; set; } = 0;
  35. public string riskStrategy { get; set; } = string.Empty;
  36. public string parse_type { get; set; } = string.Empty;
  37. public int launchScene { get; set; } = -1;
  38. }
  39. }