TkPoolDTO.cs 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 bool is_banned { get; set; } = false;
  52. public bool is_hide { get; set; } = true;
  53. public bool enable_call_stats { get; set; } = true;
  54. public string parseEndpoint { get; set; } = string.Empty;
  55. public string related_account_ids { get; set; } = string.Empty;
  56. /// <summary>
  57. /// brw-浏览器,qapp-快应用
  58. /// </summary>
  59. public string riskStrategy { get; set; } = string.Empty;
  60. public int launchScene { get; set; } = -1;
  61. public bool useCouponLinkFirst { get; set; } = true;
  62. public string parse_type { get; set; } = string.Empty;
  63. }
  64. }