修改质量月报汇总

This commit is contained in:
2023-09-12 09:09:49 +08:00
parent 50c4ca20fc
commit 006ac375f5
18 changed files with 7767 additions and 11 deletions
@@ -0,0 +1,104 @@
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;
}
}
}
+1173
View File
File diff suppressed because it is too large Load Diff
+1
View File
@@ -177,6 +177,7 @@
<Compile Include="Chart\DataSourcePoint.cs" />
<Compile Include="Chart\DataSourceTeam.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" />
+13
View File
@@ -85,5 +85,18 @@ namespace Model
IExecuteResult result = this.ExecuteMethodCall(this, ((MethodInfo)MethodInfo.GetCurrentMethod()), year);
return (ISingleResult<DigDataHSEDataCollectItem>)result.ReturnValue;
}
/// <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;
}
}
}