TkDataDTO.cs 1.9 KB

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