TkConfigDTO.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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 int ksIgnorePercentage { get; set; } = 0;
  47. public string ksIgnorePercentageCity { get; set; } = string.Empty;
  48. public int ks_limit_per_ip_24h { get; set; } = 0;
  49. public int ks_limit_per_oaid_24h { get; set; } = 0;
  50. public string ks_blacklist_regular { get; set; } = string.Empty;
  51. public string ksTestToken { get; set; } = string.Empty;
  52. public int dyIgnorePercentage { get; set; } = 0;
  53. public string dyIgnorePercentageCity { get; set; } = string.Empty;
  54. public int dy_limit_per_ip_24h { get; set; } = 0;
  55. public int dy_limit_per_oaid_24h { get; set; } = 0;
  56. }
  57. }