| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- namespace molilian.core
- {
- public enum KsUnionWorkMode
- {
- SiteApi = 1,
- Crawler = 3,
- }
- public class KsPoolDTO
- {
- public int id { get; set; }
- public string name { get; set; } = string.Empty;
- public string company { get; set; } = string.Empty;
- public string description { get; set; } = string.Empty;
- public string pid { get; set; } = string.Empty;
- public string app_key { get; set; } = string.Empty;
- public string app_secret { get; set; } = string.Empty;
- public string sign_secret { get; set; } = string.Empty;
- public string event_secret { 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 KsUnionWorkMode work_mode { get; set; } = KsUnionWorkMode.SiteApi;
- public string user_agent { get; set; } = string.Empty;
- public string cookies { get; set; } = string.Empty;
- public string nodeName { get; set; } = string.Empty;
- public string end_point { get; set; } = string.Empty;
- public decimal current_amt { get; set; } = 0;
- public int current_daily_calls { get; set; } = 0;
- public int current_hourly_calls { get; set; } = 0;
- public decimal daily_income_limit { get; set; } = 0;
- public int daily_calls_limit { get; set; } = 0;
- public int hourly_calls_limit { get; set; } = 0;
- public decimal draw_balance { 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 int time_range { get; set; } = 0;
- public int today_clickNum { get; set; } = 0;
- public decimal today_cosFee { get; set; } = 0;
- public decimal today_cosPrice { get; set; } = 0;
- public decimal today_finishCosFee { get; set; } = 0;
- public decimal today_finishCosPrice { get; set; } = 0;
- public int today_finishOrderNum { get; set; } = 0;
- public int today_orderNum { get; set; } = 0;
- public bool is_hide { get; set; } = false;
- }
- }
|