namespace molilian.core { public class JdPoolDTO { public int id { get; set; } public string name { get; set; } = string.Empty; public string unionid { get; set; } = string.Empty; public string description { get; set; } = string.Empty; public string site_id { get; set; } = string.Empty; public string app_key { get; set; } = string.Empty; public string app_secret { get; set; } = string.Empty; public DateTime create_time { get; set; } public DateTime last_time { get; set; } public bool status { get; set; } } }