数据库变更CNPC_XJYJ

This commit is contained in:
2025-08-04 18:04:41 +08:00
parent bafbf97359
commit 79a7f35e22
679 changed files with 5590 additions and 3465 deletions
@@ -7,7 +7,7 @@ namespace BLL
{
public static class MeetingCService
{
private static Model.SGGLDB db = Funs.DB;
private static Model.CNPCDB db = Funs.DB;
/// <summary>
/// 根据日报Id获取会议
@@ -25,7 +25,7 @@ namespace BLL
/// <param name="meeting"></param>
public static void AddMeeting(Model.Manager_Month_MeetingC meeting)
{
Model.SGGLDB db = Funs.DB;
Model.CNPCDB db = Funs.DB;
Model.Manager_Month_MeetingC newMeeting = new Model.Manager_Month_MeetingC
{
MeetingId = SQLHelper.GetNewID(typeof(Model.Manager_Month_MeetingC)),
@@ -46,7 +46,7 @@ namespace BLL
/// <param name="monthReportId"></param>
public static void DeleteMeetingByMonthReportId(string monthReportId)
{
Model.SGGLDB db = Funs.DB;
Model.CNPCDB db = Funs.DB;
var q = (from x in db.Manager_Month_MeetingC where x.MonthReportId == monthReportId select x).ToList();
if (q != null)
{