20240419 NCR附件修改

This commit is contained in:
2024-04-19 10:13:37 +08:00
parent 0829c2c559
commit 016ea897dc
18 changed files with 1352 additions and 780 deletions
+10
View File
@@ -518,5 +518,15 @@ namespace BLL
db.SubmitChanges();
}
}
/// <summary>
/// 根据项目Id获取专项检查
/// </summary>
/// <param name="projectId"></param>
/// <returns></returns>
public static List<Model.Check_JointCheck> GetDriverPlanByProjectId(string projectId)
{
return (from x in Funs.DB.Check_JointCheck where x.ProjectId == projectId select x).ToList();
}
}
}