namespace molilian.core { public class MeituanPoolDTO { 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 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 string deeplink { 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 int time_range { get; set; } = 0; } }