班前会议添加情况说明

This commit is contained in:
2026-06-02 09:45:45 +08:00
parent 8e40538156
commit 3740e68e80
19 changed files with 192 additions and 4 deletions
+2
View File
@@ -239,6 +239,7 @@ namespace BLL
CompileManName = db.Sys_User.First(u => u.UserId == x.CompileMan).UserName,
AttentPersonNum = x.AttentPersonNum ?? 0,
AttachUrl = db.AttachFile.First(z => z.ToKeyId == x.ClassMeetingId).AttachUrl.Replace('\\', '/'),
Declare = x.Declare
}).Skip(Funs.PageSize * (pageIndex - 1)).Take(Funs.PageSize).ToList();
}
else if (meetingType == "W")
@@ -407,6 +408,7 @@ namespace BLL
ManagePersonNum = m_personum,
InstallationId = meeting.InstallationId,
InstallationName = meeting.InstallationName,
Declare = meeting.Declare
}
;
+3 -2
View File
@@ -47,7 +47,8 @@ namespace BLL
MeetingHostManOther=classMeeting.MeetingHostManOther,
ManagePersonNum = classMeeting.ManagePersonNum,
InstallationId = classMeeting.InstallationId,
InstallationName = classMeeting.InstallationName
InstallationName = classMeeting.InstallationName,
Declare = classMeeting.Declare
};
db.Meeting_ClassMeeting.InsertOnSubmit(newClassMeeting);
db.SubmitChanges();
@@ -81,7 +82,7 @@ namespace BLL
newClassMeeting.AttentPerson = classMeeting.AttentPerson;
newClassMeeting.AttentPersonNum = classMeeting.AttentPersonNum;
newClassMeeting.MeetingHostManOther = classMeeting.MeetingHostManOther;
newClassMeeting.Declare = classMeeting.Declare;
db.SubmitChanges();
}
}