TkPoolDTO.cs 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. namespace molilian.core
  2. {
  3. public enum FakeClickLinkType
  4. {
  5. All = 0,
  6. H5 = 1,
  7. Deeplink = 2,
  8. }
  9. public class TkPoolDTO
  10. {
  11. public int id { get; set; }
  12. public string name { get; set; } = string.Empty;
  13. public string company { get; set; } = string.Empty;
  14. public string phone { get; set; } = string.Empty;
  15. public string description { get; set; } = string.Empty;
  16. public string note { get; set; } = string.Empty;
  17. public string tb_token { get; set; } = string.Empty;
  18. public string floorId { get; set; } = string.Empty;
  19. public string refpid { get; set; } = string.Empty;
  20. public string cookies { get; set; } = string.Empty;
  21. public string user_agent { get; set; } = string.Empty;
  22. public DateTime create_time { get; set; } = DateTime.Now;
  23. public DateTime last_time { get; set; } = DateTime.Now;
  24. public DateTime login_time { get; set; } = DateTime.Now;
  25. public bool status { get; set; }
  26. public string suspended_endpoint { get; set; } = string.Empty;
  27. public string nodeName { get; set; } = string.Empty;
  28. public bool? proxyStatus { get; set; }
  29. public decimal current_amt { get; set; } = 0;
  30. public decimal daily_income_limit { get; set; } = 0;
  31. public int daily_calls_limit { get; set; } = 0;
  32. public int current_hourly_calls { get; set; } = 0;
  33. public int hourly_calls_limit { get; set; } = 0;
  34. public int current_daily_calls { get; set; } = 0;
  35. public int time_range { get; set; } = 0;
  36. public decimal draw_balance { get; set; } = 0;
  37. public string api { get; set; } = string.Empty;
  38. public int api_id { get; set; } = 0;
  39. public string end_point { get; set; } = string.Empty;
  40. public bool enable_fake_click { get; set; } = false;
  41. public FakeClickLinkType fake_click_link_type { get; set; } = 0;
  42. public int fake_click_max { get; set; } = 0;
  43. public int fake_click_min { get; set; } = 0;
  44. public bool enable_parse { get; set; } = false;
  45. public bool enable_coupon { get; set; } = false;
  46. public bool enable_sync_order { get; set; } = false;
  47. public bool enable_promotionQuery { get; set; } = false;
  48. public bool enable_deep_url { get; set; } = false;
  49. public string appkey { get; set; } = string.Empty;
  50. public string appSecret { get; set; } = string.Empty;
  51. public string open_pid { get; set; } = string.Empty;
  52. public string appkey2 { get; set; } = string.Empty;
  53. public string appSecret2 { get; set; } = string.Empty;
  54. public string open_pid2 { get; set; } = string.Empty;
  55. public bool is_banned { get; set; } = false;
  56. public bool is_hide { get; set; } = true;
  57. public bool enable_call_stats { get; set; } = true;
  58. public string parseEndpoint { get; set; } = string.Empty;
  59. public string related_account_ids { get; set; } = string.Empty;
  60. /// <summary>
  61. /// brw-浏览器,qapp-快应用
  62. /// </summary>
  63. public string riskStrategy { get; set; } = string.Empty;
  64. public int launchScene { get; set; } = -1;
  65. public bool useCouponLinkFirst { get; set; } = true;
  66. public string parse_type { get; set; } = string.Empty;
  67. public string strategy_id { get; set; } = string.Empty;
  68. public string riskCookie { get; set; } = string.Empty;
  69. }
  70. }