This commit is contained in:
2025-02-17 17:01:45 +08:00
28 changed files with 657 additions and 460 deletions
+2
View File
@@ -610,6 +610,8 @@
<Compile Include="JDGL\WBS\CostControlService.cs" />
<Compile Include="JDGL\WBS\EquipmentMaterialBigTypeService.cs" />
<Compile Include="JDGL\WBS\EquipmentMaterialTypeService.cs" />
<Compile Include="JDGL\WBS\JDGLWBSDetailService.cs" />
<Compile Include="JDGL\WBS\JDGLWBSService.cs" />
<Compile Include="JDGL\WBS\MilePostService.cs" />
<Compile Include="JDGL\WBS\UnitProjectInitService.cs" />
<Compile Include="JDGL\WBS\UnitProjectService.cs" />
+16
View File
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BLL
{
public static class JDGLWBSDetailService
{
public static List<Model.JDGL_WBSDetail> GetWBSDetailsByWorkPackageId(string workPackageId)
{
return (from x in Funs.DB.JDGL_WBSDetail where x.WorkPackageId == workPackageId select x).ToList();
}
}
}
+16
View File
@@ -0,0 +1,16 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BLL
{
public static class JDGLWBSService
{
public static List<Model.JDGL_WBS> GetWBSsByProjectId(string projectId,string parentId)
{
return (from x in Funs.DB.JDGL_WBS where x.ParentId == parentId && x.ProjectId == projectId orderby x.PathCode select x).ToList();
}
}
}
+3 -2
View File
@@ -2179,7 +2179,7 @@ namespace BLL
//////推送订阅消息
GetDataService.SendSubscribeMessage();
GetDataService.CorrectingPersonInOutNumber(null);
}
#region
@@ -2230,7 +2230,8 @@ namespace BLL
}
finally
{
getPipelineWeldingQuantities.Interval = 1000 * 3600 * 24;
//getPipelineWeldingQuantities.Interval = 1000 * 3600 * 24;
getPipelineWeldingQuantities.Interval = 1000 * 3600 * 12;
getPipelineWeldingQuantities.Start();
}
}