refactor(cqms): 整理检查模块并迁移 WBS 服务
清理旧检查页面、服务和接口,补充 WBS 检查服务及数据库脚本,同步工程引用与菜单配置,收敛 CQMS 检查功能的代码组织。
This commit is contained in:
@@ -1,104 +0,0 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Model
|
||||
{
|
||||
public class DigDataCQMSDataCollectItem
|
||||
{
|
||||
public string CQMSDataCollectItemId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string CQMSDataCollectId
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public int SortIndex
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string CQMSContent
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string MeasureUnit
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
public string Month1
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month2
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month3
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month4
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month5
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month6
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month7
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month8
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month9
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month10
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month11
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string Month12
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
public string MonthSum
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -149,7 +149,6 @@
|
||||
<Compile Include="ConstructionLogMachineItem.cs" />
|
||||
<Compile Include="ConstructionLogPersonItem.cs" />
|
||||
<Compile Include="CQMS\CheckItem.cs" />
|
||||
<Compile Include="CQMS\DigDataCQMSDataCollectItem.cs" />
|
||||
<Compile Include="CQMS\FileCabinetItem.cs" />
|
||||
<Compile Include="CQMS\NDTCheckItem.cs" />
|
||||
<Compile Include="CQMS\QualityAcceptanceItem.cs" />
|
||||
@@ -225,4 +224,4 @@
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
</Project>
|
||||
@@ -47,24 +47,6 @@ namespace Model
|
||||
return (ISingleResult<TrainingTaskItemItem>)result.ReturnValue;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// ��ȡ�������ĵ�
|
||||
/// </summary>
|
||||
/// <param name="unitcode"></param>
|
||||
/// <param name="isono"></param>
|
||||
/// <returns></returns>
|
||||
/// <summary>
|
||||
/// ��ȡ�������ݻ���
|
||||
/// </summary>
|
||||
/// <param name="unitcode"></param>
|
||||
/// <param name="isono"></param>
|
||||
/// <returns></returns>
|
||||
[Function(Name = "[dbo].[Sp_DigData_CQMSDataCollect]")]
|
||||
public IEnumerable<DigDataCQMSDataCollectItem> Sp_DigData_CQMSDataCollect([Parameter(DbType = "INT")] int year)
|
||||
{
|
||||
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), year);
|
||||
return (ISingleResult<DigDataCQMSDataCollectItem>)result.ReturnValue;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user