20250710 试压包资料

This commit is contained in:
2025-07-10 16:47:41 +08:00
parent 4b878c2c08
commit 46e82ffb7e
17 changed files with 1751 additions and 5 deletions
+30
View File
@@ -0,0 +1,30 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Model
{
/// <summary>
///
/// </summary>
public class FastReportItem
{
/// <summary>
/// Table数据源集
/// </summary>
public List<DataTable> DataTables { get; set; }
/// <summary>
/// 参数键值对
/// </summary>
public Dictionary<string, string> ParameterValues { get; set; }
/// <summary>
/// 模板路径
/// </summary>
public string ReportPath { get; set; }
}
}
+24
View File
@@ -218163,6 +218163,8 @@ namespace Model
private System.Nullable<System.DateTime> _TestDate;
private System.Nullable<int> _PrintState;
private EntitySet<PTP_ItemEndCheckList> _PTP_ItemEndCheckList;
private EntitySet<PTP_PipelineList> _PTP_PipelineList;
@@ -218241,6 +218243,8 @@ namespace Model
partial void OnStateChanged();
partial void OnTestDateChanging(System.Nullable<System.DateTime> value);
partial void OnTestDateChanged();
partial void OnPrintStateChanging(System.Nullable<int> value);
partial void OnPrintStateChanged();
#endregion
public PTP_TestPackage()
@@ -218905,6 +218909,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PrintState", DbType="Int")]
public System.Nullable<int> PrintState
{
get
{
return this._PrintState;
}
set
{
if ((this._PrintState != value))
{
this.OnPrintStateChanging(value);
this.SendPropertyChanging();
this._PrintState = value;
this.SendPropertyChanged("PrintState");
this.OnPrintStateChanged();
}
}
}
[global::System.Data.Linq.Mapping.AssociationAttribute(Name="FK_PTP_ItemEndCheckList_PTP_TestPackage", Storage="_PTP_ItemEndCheckList", ThisKey="PTP_ID", OtherKey="PTP_ID", DeleteRule="NO ACTION")]
public EntitySet<PTP_ItemEndCheckList> PTP_ItemEndCheckList
{
+1
View File
@@ -230,6 +230,7 @@
<Compile Include="CQMS\QualityAcceptanceItem.cs" />
<Compile Include="CQMS\WelderItem.cs" />
<Compile Include="ErrorInfo.cs" />
<Compile Include="FastReportItem.cs" />
<Compile Include="HandleStep.cs" />
<Compile Include="HJGL\3DParameter.cs" />
<Compile Include="HJGL\MaterialStockItem.cs" />