DyDataDTO.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536
  1. namespace molilian.core
  2. {
  3. public class DyDataDTO
  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 string title { get; set; } = string.Empty;
  9. public int accountId { get; set; } = 0;
  10. public string accountName { get; set; } = string.Empty;
  11. public bool success { get; set; } = true;
  12. public bool commercial { get; set; } = false;
  13. public string message { get; set; } = string.Empty;
  14. public string reason { get; set; } = string.Empty;
  15. public string content { get; set; } = string.Empty;
  16. public string taoToken { get; set; } = string.Empty;
  17. public string rawContent { get; set; } = string.Empty;
  18. public string ip { get; set; } = string.Empty;
  19. public string oaid { get; set; } = string.Empty;
  20. public string itemId { get; set; } = string.Empty;
  21. public string itemName { get; set; } = string.Empty;
  22. public decimal couponAmount { get; set; } = 0;
  23. public decimal promotionPrice { get; set; } = 0;
  24. public string pic { get; set; } = string.Empty;
  25. public string shortLinkurl { get; set; } = string.Empty;
  26. public string deeplink_url { get; set; } = string.Empty;
  27. public int elapsedTime { get; set; } = 0;
  28. public int elapsedTime2 { get; set; } = 0;
  29. public int elapsedTime3 { get; set; } = 0;
  30. public DateTime create_time { get; set; } = DateTime.Now;
  31. public string end_point { get; set; } = string.Empty;
  32. public int subCode { get; set; } = 0;
  33. }
  34. }