TkDataDTO.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using dodohold.core;
  2. namespace molilian.core
  3. {
  4. public class TkDataDTO
  5. {
  6. [Key]
  7. public long 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 int elapsedTime2 { get; set; } = 0;
  23. public int elapsedTime3 { get; set; } = 0;
  24. public string ip { get; set; } = string.Empty;
  25. public string oaid { get; set; } = string.Empty;
  26. public string taoToken { get; set; } = string.Empty;
  27. public string num_iid { get; set; } = string.Empty;
  28. public string itemId { get; set; } = string.Empty;
  29. public string itemName { get; set; } = string.Empty;
  30. public decimal couponAmount { get; set; } = 0;
  31. public decimal promotionPrice { get; set; } = 0;
  32. public string pic { get; set; } = string.Empty;
  33. public string sellerNickName { get; set; } = string.Empty;
  34. public string shopTitle { get; set; } = string.Empty;
  35. public string qrCodeUrl { get; set; } = string.Empty;
  36. public DateTime create_time { get; set; } = DateTime.Now;
  37. [IgnoreInsert, IgnoreUpdate]
  38. public string couponEffectiveStartTime { get; set; } = string.Empty;
  39. [IgnoreInsert, IgnoreUpdate]
  40. public string couponEffectiveEndTime { get; set; } = string.Empty;
  41. public string end_point { get; set; } = string.Empty;
  42. public int subCode { get; set; } = 0;
  43. }
  44. }