using System.Collections.Generic; namespace GDZZ.Core.Service; public class DbTableInfoInput { public string Name { get; set; } public string Description { get; set; } public List DbColumnInfoList { get; set; } }