MeituanPoolDTO.cs 1.2 KB

123456789101112131415161718192021222324252627
  1. namespace molilian.core
  2. {
  3. public class MeituanPoolDTO
  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 description { get; set; } = string.Empty;
  9. public DateTime create_time { get; set; } = DateTime.Now;
  10. public DateTime last_time { get; set; } = DateTime.Now;
  11. public DateTime login_time { get; set; } = DateTime.Now;
  12. public bool status { get; set; }
  13. public string deeplink { get; set; } = string.Empty;
  14. public string nodeName { get; set; } = string.Empty;
  15. public string end_point { get; set; } = string.Empty;
  16. public decimal current_amt { get; set; } = 0;
  17. public int current_daily_calls { get; set; } = 0;
  18. public int current_hourly_calls { get; set; } = 0;
  19. public decimal daily_income_limit { get; set; } = 0;
  20. public int daily_calls_limit { get; set; } = 0;
  21. public int hourly_calls_limit { get; set; } = 0;
  22. public decimal draw_balance { get; set; } = 0;
  23. public int time_range { get; set; } = 0;
  24. }
  25. }