ElePoolDTO - 复制.cs 955 B

1234567891011121314151617181920212223242526
  1. namespace molilian.core
  2. {
  3. public class YourEntityClass
  4. {
  5. public int id { get; set; }
  6. public int channel_id { get; set; }
  7. public string channel_code { get; set; }
  8. public string name { get; set; }
  9. public string end_point { get; set; }
  10. public string nodeName { get; set; }
  11. public string company { get; set; }
  12. public string description { get; set; }
  13. public DateTime create_time { get; set; }
  14. public DateTime last_time { get; set; }
  15. public sbyte status { get; set; }
  16. public string deeplink { get; set; }
  17. public string token { get; set; }
  18. public DateTime start_time { get; set; }
  19. public DateTime end_time { get; set; }
  20. public sbyte priority_weight { get; set; }
  21. public int current_hourly_calls { get; set; }
  22. public int current_daily_calls { get; set; }
  23. public int time_range { get; set; }
  24. }
  25. }