TkPoolDTO.cs 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. namespace molilian.core
  2. {
  3. public class TkPoolDTO
  4. {
  5. public int id { get; set; }
  6. public string name { get; set; } = string.Empty;
  7. public string company { get; set; } = string.Empty;
  8. public string phone { get; set; } = string.Empty;
  9. public string description { get; set; } = string.Empty;
  10. public string tb_token { get; set; } = string.Empty;
  11. public string floorId { get; set; } = string.Empty;
  12. public string refpid { get; set; } = string.Empty;
  13. public string cookies { get; set; } = string.Empty;
  14. public string user_agent { get; set; } = string.Empty;
  15. public DateTime create_time { get; set; } = DateTime.Now;
  16. public DateTime last_time { get; set; } = DateTime.Now;
  17. public DateTime login_time { get; set; } = DateTime.Now;
  18. public bool status { get; set; }
  19. public string nodeName { get; set; } = string.Empty;
  20. public decimal current_amt { get; set; } = 0;
  21. public decimal daily_income_limit { get; set; } = 0;
  22. public decimal draw_balance { get; set; } = 0;
  23. public string api { get; set; } = string.Empty;
  24. public int api_id { get; set; } = 0;
  25. public string end_point { get; set; } = string.Empty;
  26. public bool enable_fake_click { get; set; } = false;
  27. public bool enable_parse { get; set; } = false;
  28. public bool enable_coupon { get; set; } = false;
  29. public bool enable_sync_order { get; set; } = false;
  30. public bool enable_promotionQuery { get; set; } = false;
  31. public string appkey { get; set; } = string.Empty;
  32. public string appSecret { get; set; } = string.Empty;
  33. public string open_pid { get; set; } = string.Empty;
  34. }
  35. }