TkPoolDTO.cs 1.9 KB

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