管道基础大数据平台系统开发-【CS】-ExportMap
1
13693261870
2023-04-12 62ef8708f7a1eb15219e28431ee0cd4b071d33f4
ExportMap/cs/XYZUtils.cs
@@ -129,7 +129,7 @@
        /// </summary>
        public static List<SysMeta> SelectMetas(List<int> ids, string types = "")
        {
            string sql = string.Format("select * from lf.sys_meta where id in ({0}) {1} order by id", string.Join(",", ids), types);
            string sql = string.Format("select a.*, fn_get_fullname(dircode, 2) dirname from lf.sys_meta a where id in ({0}) {1} order by id", string.Join(",", ids), types);
            DataTable dt = Tools.DBHelper.GetDataTable(sql);
            List<SysMeta> list = ModelHandler.FillModel<SysMeta>(dt);