This commit is contained in:
2024-10-10 10:35:01 +08:00
parent 94fc0c6aa5
commit 022aebc00d
45 changed files with 1525 additions and 487 deletions
+126 -4
View File
@@ -29,10 +29,6 @@ namespace Model
#region
partial void OnCreated();
partial void OnCreated()
{
this.CommandTimeout = 600;
}
partial void InsertAttachFile(AttachFile instance);
partial void UpdateAttachFile(AttachFile instance);
partial void DeleteAttachFile(AttachFile instance);
@@ -34549,6 +34545,8 @@ namespace Model
private string _WorkAreaCode;
private string _WorkAreaId;
private string _PipelineCode;
private string _PipingClassCode;
@@ -34561,6 +34559,8 @@ namespace Model
private string _WelderCode;
private string _TeamGroupName;
private string _WeldTypeCode;
private System.Nullable<double> _Dia;
@@ -34581,6 +34581,8 @@ namespace Model
private string _AcceptLevel;
private string _PIPClassCode;
private string _Sheet;
private string _PNO;
@@ -34833,6 +34835,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WorkAreaId", DbType="NVarChar(50)")]
public string WorkAreaId
{
get
{
return this._WorkAreaId;
}
set
{
if ((this._WorkAreaId != value))
{
this._WorkAreaId = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipelineCode", DbType="NVarChar(100)")]
public string PipelineCode
{
@@ -34929,6 +34947,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TeamGroupName", DbType="NVarChar(50)")]
public string TeamGroupName
{
get
{
return this._TeamGroupName;
}
set
{
if ((this._TeamGroupName != value))
{
this._TeamGroupName = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldTypeCode", DbType="NVarChar(50)")]
public string WeldTypeCode
{
@@ -35089,6 +35123,22 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PIPClassCode", DbType="NVarChar(50)")]
public string PIPClassCode
{
get
{
return this._PIPClassCode;
}
set
{
if ((this._PIPClassCode != value))
{
this._PIPClassCode = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Sheet", DbType="NVarChar(50)")]
public string Sheet
{
@@ -38184,6 +38234,10 @@ namespace Model
private int _IsWelderFirst;
private string _PointState;
private string _RepairRecordId;
public View_GenerateTrust_FJ()
{
}
@@ -38347,6 +38401,38 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PointState", DbType="Char(1)")]
public string PointState
{
get
{
return this._PointState;
}
set
{
if ((this._PointState != value))
{
this._PointState = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RepairRecordId", DbType="NVarChar(50)")]
public string RepairRecordId
{
get
{
return this._RepairRecordId;
}
set
{
if ((this._RepairRecordId != value))
{
this._RepairRecordId = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_GenerateTrustItem")]
@@ -38534,6 +38620,10 @@ namespace Model
private System.Nullable<decimal> _Dia;
private string _PointState;
private string _RepairRecordId;
public View_GenerateTrustItem_FJ()
{
}
@@ -38761,6 +38851,38 @@ namespace Model
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PointState", DbType="Char(1)")]
public string PointState
{
get
{
return this._PointState;
}
set
{
if ((this._PointState != value))
{
this._PointState = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RepairRecordId", DbType="NVarChar(50)")]
public string RepairRecordId
{
get
{
return this._RepairRecordId;
}
set
{
if ((this._RepairRecordId != value))
{
this._RepairRecordId = value;
}
}
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_Hard_Report")]