20230324新增集团查看数据跳转页面、现场人员卡号补漏按钮功能

This commit is contained in:
2023-03-24 18:03:17 +08:00
parent 8b0c9fdef0
commit a9feacd3d2
123 changed files with 26137 additions and 50 deletions
+16
View File
@@ -149,6 +149,22 @@ namespace BLL
}
/// <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;
}
/// <summary>
///
/// </summary>