This commit is contained in:
2025-09-15 19:12:00 +08:00
parent 033a73c280
commit 8409c7bc71
3 changed files with 40 additions and 10 deletions
+10 -4
View File
@@ -13,6 +13,8 @@ namespace BLL
#region
/// <summary>
/// 督查检查整改上报
/// </summary>
@@ -23,12 +25,12 @@ namespace BLL
{
try
{
// CNCECHSSEService.HSSEServiceClient hsseC = new CNCECHSSEService.HSSEServiceClient();
var upCheckReport = from x in db.View_DCGL_CheckRectifyListFromSUB
where x.RealEndDate.HasValue && x.CheckRectifyId == checkRectifyId
select new Model.DCGLCheckRectifyItem
{
CheckRectifyId = x.CheckRectifyId,
NoticeItemId = x.NoticeItemId,
CheckRectifyCode = x.CheckRectifyCode,
ProjectId = x.ProjectId,
UnitId = x.UnitId,
@@ -42,13 +44,15 @@ namespace BLL
OrderEndDate = x.OrderEndDate,
OrderEndPerson = x.OrderEndPerson,
RealEndDate = x.RealEndDate,
Verification = x.Verification,
//Verification = x.Verification,
Situation = x.Situation,
AttachFileId = x.AttachFileId2,
ToKeyId = x.ToKeyId2,
AttachSource = x.AttachSource2,
AttachUrl = x.AttachUrl2,
////附件转为字节传送
FileContext = FileStructService.GetMoreFileStructByAttachUrl(x.AttachUrl2),
FilePath = Funs.SGGLUrl
//////附件转为字节传送
//FileContext = FileStructService.GetMoreFileStructByAttachUrl(x.AttachUrl2),
};
string baseurl = SysConstSetService.CNCECPath + "/api/HSSEData/UpDCGLCheckRectifyTable";
@@ -91,6 +95,8 @@ namespace BLL
return code;
}
}
#endregion