TkPoolDTO.cs 3.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 decimal current_amt { get; set; } = 0;
  29. public decimal daily_income_limit { get; set; } = 0;
  30. public int daily_calls_limit { get; set; } = 0;
  31. public int current_hourly_calls { get; set; } = 0;
  32. public int hourly_calls_limit { get; set; } = 0;
  33. public int current_daily_calls { get; set; } = 0;
  34. public int time_range { get; set; } = 0;
  35. public decimal draw_balance { get; set; } = 0;
  36. public string api { get; set; } = string.Empty;
  37. public int api_id { get; set; } = 0;
  38. public string end_point { get; set; } = string.Empty;
  39. public bool enable_fake_click { get; set; } = false;
  40. public FakeClickLinkType fake_click_link_type { get; set; } = 0;
  41. public int fake_click_max { get; set; } = 0;
  42. public int fake_click_min { get; set; } = 0;
  43. public bool enable_parse { get; set; } = false;
  44. public bool enable_coupon { get; set; } = false;
  45. public bool enable_sync_order { get; set; } = false;
  46. public bool enable_promotionQuery { get; set; } = false;
  47. public bool enable_deep_url { get; set; } = false;
  48. public string appkey { get; set; } = string.Empty;
  49. public string appSecret { get; set; } = string.Empty;
  50. public string open_pid { get; set; } = string.Empty;
  51. public string appkey2 { get; set; } = string.Empty;
  52. public string appSecret2 { get; set; } = string.Empty;
  53. public string open_pid2 { get; set; } = string.Empty;
  54. public bool is_banned { get; set; } = false;
  55. public bool is_hide { get; set; } = true;
  56. public bool enable_call_stats { get; set; } = true;
  57. public string parseEndpoint { get; set; } = string.Empty;
  58. public string related_account_ids { get; set; } = string.Empty;
  59. /// <summary>
  60. /// brw-浏览器,qapp-快应用
  61. /// </summary>
  62. public string riskStrategy { get; set; } = string.Empty;
  63. public int launchScene { get; set; } = -1;
  64. public bool useCouponLinkFirst { get; set; } = true;
  65. public string parse_type { get; set; } = string.Empty;
  66. public string strategy_id { get; set; } = string.Empty;
  67. }
  68. }