| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- namespace molilian.core
- {
- public enum FakeClickLinkType
- {
- All = 0,
- H5 = 1,
- Deeplink = 2,
- }
- public class TkPoolDTO
- {
- public int id { get; set; }
- public string name { get; set; } = string.Empty;
- public string company { get; set; } = string.Empty;
- public string phone { get; set; } = string.Empty;
- public string description { get; set; } = string.Empty;
- public string note { get; set; } = string.Empty;
- public string tb_token { get; set; } = string.Empty;
- public string floorId { get; set; } = string.Empty;
- public string refpid { get; set; } = string.Empty;
- public string cookies { get; set; } = string.Empty;
- public string user_agent { get; set; } = string.Empty;
- public DateTime create_time { get; set; } = DateTime.Now;
- public DateTime last_time { get; set; } = DateTime.Now;
- public DateTime login_time { get; set; } = DateTime.Now;
- public bool status { get; set; }
- public string suspended_endpoint { get; set; } = string.Empty;
- public string nodeName { get; set; } = string.Empty;
- public bool? proxyStatus { get; set; }
- public decimal current_amt { get; set; } = 0;
- public decimal daily_income_limit { get; set; } = 0;
- public int daily_calls_limit { get; set; } = 0;
- public int current_hourly_calls { get; set; } = 0;
- public int hourly_calls_limit { get; set; } = 0;
- public int current_daily_calls { get; set; } = 0;
- public int time_range { get; set; } = 0;
- public decimal draw_balance { get; set; } = 0;
- public string api { get; set; } = string.Empty;
- public int api_id { get; set; } = 0;
- public string end_point { get; set; } = string.Empty;
- public bool enable_fake_click { get; set; } = false;
- public FakeClickLinkType fake_click_link_type { get; set; } = 0;
- public int fake_click_max { get; set; } = 0;
- public int fake_click_min { get; set; } = 0;
- public bool enable_parse { get; set; } = false;
- public bool enable_coupon { get; set; } = false;
- public bool enable_sync_order { get; set; } = false;
- public bool enable_promotionQuery { get; set; } = false;
- public bool enable_deep_url { get; set; } = false;
- public string appkey { get; set; } = string.Empty;
- public string appSecret { get; set; } = string.Empty;
- public string open_pid { get; set; } = string.Empty;
- public string appkey2 { get; set; } = string.Empty;
- public string appSecret2 { get; set; } = string.Empty;
- public string open_pid2 { get; set; } = string.Empty;
- public bool is_banned { get; set; } = false;
- public bool is_hide { get; set; } = true;
- public bool enable_call_stats { get; set; } = true;
- public string parseEndpoint { get; set; } = string.Empty;
- public string related_account_ids { get; set; } = string.Empty;
- /// <summary>
- /// brw-浏览器,qapp-快应用
- /// </summary>
- public string riskStrategy { get; set; } = string.Empty;
- public int launchScene { get; set; } = -1;
- public bool useCouponLinkFirst { get; set; } = true;
- public string parse_type { get; set; } = string.Empty;
- public string strategy_id { get; set; } = string.Empty;
- public string riskCookie { get; set; } = string.Empty;
- }
- }
|