TkDataDTO.cs 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. using dodohold.core;
  2. namespace molilian.core
  3. {
  4. public class TkDataDTO
  5. {
  6. public TkChannelEnum channel { get; set; }
  7. public LinkTypeEnum link_type { get; set; }
  8. public ChannelTypeEnum channel_type { get; set; } = ChannelTypeEnum.none;
  9. public string accountName { get; set; } = string.Empty;
  10. public bool success { get; set; } = true;
  11. public string message { get; set; } = string.Empty;
  12. public string reason { get; set; } = string.Empty;
  13. public string content { get; set; } = string.Empty;
  14. public string rawContent { get; set; } = string.Empty;
  15. public string rawContent2 { get; set; } = string.Empty;
  16. public string shortLinkurl { get; set; } = string.Empty;
  17. public string deeplink_url { get; set; } = string.Empty;
  18. public int elapsedTime { get; set; } = 0;
  19. public string ip { get; set; } = string.Empty;
  20. public string oaid { get; set; } = string.Empty;
  21. public string taoToken { get; set; } = string.Empty;
  22. public string num_iid { get; set; } = string.Empty;
  23. public string itemId { get; set; } = string.Empty;
  24. public string itemName { get; set; } = string.Empty;
  25. public decimal couponAmount { get; set; } = 0;
  26. public decimal promotionPrice { get; set; } = 0;
  27. public string pic { get; set; } = string.Empty;
  28. public string sellerNickName { get; set; } = string.Empty;
  29. public string shopTitle { get; set; } = string.Empty;
  30. public string qrCodeUrl { get; set; } = string.Empty;
  31. public DateTime create_time { get; set; } = DateTime.Now;
  32. [IgnoreInsert, IgnoreUpdate]
  33. public string couponEffectiveStartTime { get; set; } = string.Empty;
  34. [IgnoreInsert, IgnoreUpdate]
  35. public string couponEffectiveEndTime { get; set; } = string.Empty;
  36. }
  37. }