TkActivityDTO.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. using dodohold.core;
  2. namespace molilian.core
  3. {
  4. public class TkActivityDTO
  5. {
  6. [Key]
  7. public int id { get; set; }
  8. public string end_point { get; set; } = string.Empty;
  9. public TkChannelEnum channel { get; set; } = TkChannelEnum.tb;
  10. public int accountId { get; set; } = 0;
  11. public string accountName { get; set; } = string.Empty;
  12. public string proxy_node { get; set; } = string.Empty;
  13. public string page_id { get; set; } = string.Empty;
  14. public string raw_item_id { get; set; } = string.Empty;
  15. public string item_id { get; set; } = string.Empty;
  16. public bool success { get; set; } = false;
  17. public string reason { get; set; } = string.Empty;
  18. public string message { get; set; } = string.Empty;
  19. public string deeplink_url { get; set; } = string.Empty;
  20. public DateTime? create_time { get; set; }
  21. public int elapsedTime { get; set; } = 0;
  22. public int elapsedTime2 { get; set; } = 0;
  23. public string ip { get; set; } = string.Empty;
  24. public string oaid { get; set; } = string.Empty;
  25. public decimal maxCommission { get; set; }
  26. public decimal estimatedCommission { get; set; }
  27. public decimal zkFinalPrice { get; set; }
  28. public decimal reservePrice { get; set; }
  29. public string title { get; set; } = string.Empty;
  30. public string picUrl { get; set; } = string.Empty;
  31. public string shortTitle { get; set; } = string.Empty;
  32. public decimal priceAfterCoupon { get; set; } = 0;
  33. public decimal commissionRate { get; set; } = 0;
  34. public decimal couponAmount { get; set; } = 0;
  35. }
  36. }