20250618 检测单导入

This commit is contained in:
2025-06-18 15:21:55 +08:00
parent b4792934d7
commit a742019dfd
13 changed files with 1438 additions and 1 deletions
+90
View File
@@ -270431,6 +270431,8 @@ namespace Model
private string _ProjectCode;
private string _ProjectName;
private string _UnitId;
private string _UnitWorkId;
@@ -270459,6 +270461,8 @@ namespace Model
private string _DetectionTypeCode;
private System.Nullable<int> _DetectionRateValue;
private string _CheckTrustBatchId;
public View_Batch_BatchTrust()
@@ -270577,6 +270581,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectName", DbType="NVarChar(200)")]
public string ProjectName
{
get
{
return this._ProjectName;
}
set
{
if ((this._ProjectName != value))
{
this._ProjectName = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitId", DbType="NVarChar(50)")]
public string UnitId
{
@@ -270801,6 +270821,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DetectionRateValue", DbType="Int")]
public System.Nullable<int> DetectionRateValue
{
get
{
return this._DetectionRateValue;
}
set
{
if ((this._DetectionRateValue != value))
{
this._DetectionRateValue = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CheckTrustBatchId", DbType="NVarChar(50)")]
public string CheckTrustBatchId
{
@@ -270844,6 +270880,8 @@ namespace Model
private string _ProjectId;
private string _UnitWorkId;
private string _UnitWorkCode;
private string _PipelineCode;
@@ -270874,6 +270912,10 @@ namespace Model
private System.Nullable<System.DateTime> _PointDate;
private string _GrooveTypeCode;
private string _DetectionTypeId;
public View_Batch_BatchTrustItem()
{
}
@@ -271054,6 +271096,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkId", DbType="NVarChar(50)")]
public string UnitWorkId
{
get
{
return this._UnitWorkId;
}
set
{
if ((this._UnitWorkId != value))
{
this._UnitWorkId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnitWorkCode", DbType="NVarChar(10)")]
public string UnitWorkCode
{
@@ -271293,6 +271351,38 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_GrooveTypeCode", DbType="NVarChar(50)")]
public string GrooveTypeCode
{
get
{
return this._GrooveTypeCode;
}
set
{
if ((this._GrooveTypeCode != value))
{
this._GrooveTypeCode = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DetectionTypeId", DbType="NVarChar(50)")]
public string DetectionTypeId
{
get
{
return this._DetectionTypeId;
}
set
{
if ((this._DetectionTypeId != value))
{
this._DetectionTypeId = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_Batch_NDE")]