TkConfigDTO.cs 3.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. using System.ComponentModel.DataAnnotations;
  2. using System.ComponentModel.DataAnnotations.Schema;
  3. namespace molilian.core
  4. {
  5. [Table("tk_config")]
  6. public class TkConfigDTO
  7. {
  8. [Key]
  9. public int id { get; set; }
  10. public int ignorePercentage { get; set; } = 0;
  11. public string pass_salt { get; set; } = string.Empty;
  12. public string ignorePercentageCity { get; set; } = string.Empty;
  13. public int fake_click_min { get; set; }
  14. public int fake_click_max { get; set; }
  15. public int fake_click_ttl { get; set; } = 86400;
  16. public int rt_max { get; set; } = 0;
  17. public string blacklist_oaid { get; set; } = string.Empty;
  18. /// <summary>
  19. /// 搜同款超时时间
  20. /// </summary>
  21. public int similar_timeout { get; set; } = 0;
  22. public string tk_whitelist_regular { get; set; } = string.Empty;
  23. public string tk_blacklist_regular { get; set; } = string.Empty;
  24. public string multi_token_regular { get; set; } = string.Empty;
  25. public int jdIgnorePercentage { get; set; } = 0;
  26. public string jdIgnorePercentageCity { get; set; } = string.Empty;
  27. public int jd_limit_per_ip_24h { get; set; } = 0;
  28. public int jd_limit_per_oaid_24h { get; set; } = 0;
  29. public string jd_blacklist_regular { get; set; } = string.Empty;
  30. public string jd_h5st_sign_url { get; set; } = string.Empty;
  31. public string jd_h5st_sign_version { get; set; } = string.Empty;
  32. public string dp_style { get; set; } = string.Empty;
  33. public int dp_style_percentage { get; set; } = 0;
  34. public string dp_style_default_str { get; set; } = string.Empty;
  35. public int tk_limit_per_ip_24h { get; set; } = 0;
  36. public int tk_limit_per_oaid_24h { get; set; } = 0;
  37. public int tk_parse_retry_count { get; set; } = 0;
  38. public string cpsIgnorePercentageCity { get; set; } = string.Empty;
  39. public int cps_limit_per_ip_24h { get; set; } = 0;
  40. public int cps_limit_per_oaid_24h { get; set; } = 0;
  41. public int pddIgnorePercentage { get; set; } = 0;
  42. public string pddIgnorePercentageCity { get; set; } = string.Empty;
  43. public int pdd_limit_per_ip_24h { get; set; } = 0;
  44. public int pdd_limit_per_oaid_24h { get; set; } = 0;
  45. public string pdd_blacklist_regular { get; set; } = string.Empty;
  46. public bool pdd_rrecheck_enabled { get; set; } = true;
  47. public string pdd_precheck_client_id { get; set; } = string.Empty;
  48. public string pdd_precheck_client_secret { get; set; } = string.Empty;
  49. public string pdd_precheck_pid { get; set; } = string.Empty;
  50. public int ksIgnorePercentage { get; set; } = 0;
  51. public string ksIgnorePercentageCity { get; set; } = string.Empty;
  52. public int ks_limit_per_ip_24h { get; set; } = 0;
  53. public int ks_limit_per_oaid_24h { get; set; } = 0;
  54. public string ks_blacklist_regular { get; set; } = string.Empty;
  55. public string ksTestToken { get; set; } = string.Empty;
  56. public int dyIgnorePercentage { get; set; } = 0;
  57. public string dyIgnorePercentageCity { get; set; } = string.Empty;
  58. public int dy_limit_per_ip_24h { get; set; } = 0;
  59. public int dy_limit_per_oaid_24h { get; set; } = 0;
  60. public string account_warning_ignore_groups { get; set; } = string.Empty;
  61. public string webook_forward_zlong { get; set; } = string.Empty;
  62. }
  63. }