UnionCpsDTO.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. 
  2. using dodohold.core;
  3. namespace molilian.core
  4. {
  5. [Table("tk_cps_logs")]
  6. public class UnionCpsDTO : BaseUnionCpsDTO;
  7. [Table("tk_cps_logs_test")]
  8. public class TestUnionCpsDTO : BaseUnionCpsDTO;
  9. [Table("tk_cps_logs_success")]
  10. public class SuccessUnionCpsDTO : BaseUnionCpsDTO;
  11. public class BaseUnionCpsDTO
  12. {
  13. [Key]
  14. public long id { get; set; }
  15. public string channel { get; set; }
  16. public int accountId { get; set; } = 0;
  17. public string accountName { get; set; } = string.Empty;
  18. public string proxy_node { get; set; } = string.Empty;
  19. public string rawContent { get; set; } = string.Empty;
  20. public bool success { get; set; } = false;
  21. public string reason { get; set; } = string.Empty;
  22. public string message { get; set; } = string.Empty;
  23. public string deeplink_url { get; set; } = string.Empty;
  24. public string token { get; set; } = string.Empty;
  25. public int elapsedTime { get; set; } = 0;
  26. public string ip { get; set; } = string.Empty;
  27. public string oaid { get; set; } = string.Empty;
  28. public DateTime create_time { get; set; } = DateTime.Now;
  29. public string end_point { get; set; } = string.Empty;
  30. public string category { get; set; } = string.Empty;
  31. public string pid { get; set; } = string.Empty;
  32. public string title { get; set; } = string.Empty;
  33. public string sub_title { get; set; } = string.Empty;
  34. public string rawContent2 { get; set; } = string.Empty;
  35. public decimal couponAmount { get; set; } = 0;
  36. public string itemId { get; set; } = string.Empty;
  37. }
  38. }