集团查看数据

This commit is contained in:
2023-03-25 14:46:00 +08:00
parent ec02fe24aa
commit a33c14f46d
110 changed files with 17953 additions and 0 deletions
+17
View File
@@ -455,5 +455,22 @@ namespace BLL
}
return filename;//返回相对路径
}
/// <summary>
///
/// </summary>
/// <param name="toKeyId"></param>
/// <param name="menuId"></param>
/// <returns></returns>
public static IList<Model.AttachFile> GetBeforeFileList(string toKeyId, string menuId)
{
List<string> listToKeyId = new List<string>();
listToKeyId.Add(toKeyId);
// listToKeyId.Add(toKeyId + "r");
//listToKeyId.Add(toKeyId + "re");
var list = Funs.DB.AttachFile.Where(p => listToKeyId.Contains(p.ToKeyId) && p.MenuId == menuId).ToList();
return list;
}
}
}