| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- using System.ComponentModel.DataAnnotations;
- using System.ComponentModel.DataAnnotations.Schema;
- namespace molilian.core
- {
- [Table("tk_config")]
- public class TkConfigDTO
- {
- [Key]
- public int id { get; set; }
- public int ignorePercentage { get; set; } = 0;
- public string pass_salt { get; set; } = string.Empty;
- public string ignorePercentageCity { get; set; } = string.Empty;
- public int fake_click_min { get; set; }
- public int fake_click_max { get; set; }
- public int fake_click_ttl { get; set; } = 86400;
- public int rt_max { get; set; } = 0;
- public string blacklist_oaid { get; set; } = string.Empty;
- /// <summary>
- /// 搜同款超时时间
- /// </summary>
- public int similar_timeout { get; set; } = 0;
- public string tk_whitelist_regular { get; set; } = string.Empty;
- public string tk_blacklist_regular { get; set; } = string.Empty;
- public string multi_token_regular { get; set; } = string.Empty;
- public int jdIgnorePercentage { get; set; } = 0;
- public string jdIgnorePercentageCity { get; set; } = string.Empty;
- public int jd_limit_per_ip_24h { get; set; } = 0;
- public int jd_limit_per_oaid_24h { get; set; } = 0;
- public string jd_blacklist_regular { get; set; } = string.Empty;
- public string jd_h5st_sign_url { get; set; } = string.Empty;
- public string jd_h5st_sign_version { get; set; } = string.Empty;
- public string dp_style { get; set; } = string.Empty;
- public int dp_style_percentage { get; set; } = 0;
- public string dp_style_default_str { get; set; } = string.Empty;
- public int tk_limit_per_ip_24h { get; set; } = 0;
- public int tk_limit_per_oaid_24h { get; set; } = 0;
- public int tk_parse_retry_count { get; set; } = 0;
- public string tk_parse_default_icon { get; set; } = string.Empty;
- public string cpsIgnorePercentageCity { get; set; } = string.Empty;
- public int cps_limit_per_ip_24h { get; set; } = 0;
- public int cps_limit_per_oaid_24h { get; set; } = 0;
- public int pddIgnorePercentage { get; set; } = 0;
- public string pddIgnorePercentageCity { get; set; } = string.Empty;
- public int pdd_limit_per_ip_24h { get; set; } = 0;
- public int pdd_limit_per_oaid_24h { get; set; } = 0;
- public string pdd_blacklist_regular { get; set; } = string.Empty;
- public bool pdd_rrecheck_enabled { get; set; } = true;
- public string pdd_precheck_client_id { get; set; } = string.Empty;
- public string pdd_precheck_client_secret { get; set; } = string.Empty;
- public string pdd_precheck_pid { get; set; } = string.Empty;
- public int ksIgnorePercentage { get; set; } = 0;
- public string ksIgnorePercentageCity { get; set; } = string.Empty;
- public int ks_limit_per_ip_24h { get; set; } = 0;
- public int ks_limit_per_oaid_24h { get; set; } = 0;
- public string ks_blacklist_regular { get; set; } = string.Empty;
- public string ksTestToken { get; set; } = string.Empty;
- public int dyIgnorePercentage { get; set; } = 0;
- public string dyIgnorePercentageCity { get; set; } = string.Empty;
- public int dy_limit_per_ip_24h { get; set; } = 0;
- public int dy_limit_per_oaid_24h { get; set; } = 0;
- public string account_warning_ignore_groups { get; set; } = string.Empty;
- public string webook_forward_zlong { get; set; } = string.Empty;
- }
- }
|