From cb92dcb730d75e0ed6a94f6a5d9e027f8550bb2d Mon Sep 17 00:00:00 2001
From: gaofei1985 <181547018@qq.com>
Date: Mon, 15 Sep 2025 18:49:07 +0800
Subject: [PATCH] 1
---
SGGL/BLL/WebService/CNCECHSSEWebService.cs | 10 ++++++----
SGGL/Model/APIItem/DCGLCheckRectifyItem.cs | 9 +++++++++
2 files changed, 15 insertions(+), 4 deletions(-)
diff --git a/SGGL/BLL/WebService/CNCECHSSEWebService.cs b/SGGL/BLL/WebService/CNCECHSSEWebService.cs
index 17f8f2b4..686322e0 100644
--- a/SGGL/BLL/WebService/CNCECHSSEWebService.cs
+++ b/SGGL/BLL/WebService/CNCECHSSEWebService.cs
@@ -1975,12 +1975,12 @@
{
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,
@@ -1994,13 +1994,15 @@
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";
diff --git a/SGGL/Model/APIItem/DCGLCheckRectifyItem.cs b/SGGL/Model/APIItem/DCGLCheckRectifyItem.cs
index 55be12d1..7c7c5758 100644
--- a/SGGL/Model/APIItem/DCGLCheckRectifyItem.cs
+++ b/SGGL/Model/APIItem/DCGLCheckRectifyItem.cs
@@ -264,6 +264,15 @@
set;
}
+ ///
+ /// 附件路径域名地址
+ ///
+ public string FilePath
+ {
+ get;
+ set;
+ }
+
///
/// 附件路径
///