摘要: public static List<T> TableToListModel<T>(DataTable dt) where T : new() { // 定义集合 List<T> ts = new List<T>(); // 获得此模型的类型 Type type = typeof(T); strin 阅读全文
posted @ 2022-08-17 13:36 极客船长 阅读(220) 评论(0) 推荐(0) 编辑