This commit is contained in:
李云虎 2024-05-12 17:22:14 +08:00
commit 8ecf0eeab9
1 changed files with 55 additions and 31 deletions

View File

@ -21300,7 +21300,7 @@ namespace Model
} }
} }
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)] [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50)")]
public string ProjectId public string ProjectId
{ {
get get
@ -21477,9 +21477,11 @@ namespace Model
private string _Acceptance; private string _Acceptance;
private System.Nullable<System.DateTime> _CreatedTime;
private int _Status; private int _Status;
private System.Nullable<System.DateTime> _CreatedTime; private string _ReportNo;
#region #region
partial void OnLoaded(); partial void OnLoaded();
@ -21495,10 +21497,12 @@ namespace Model
partial void OnQualityNoChanged(); partial void OnQualityNoChanged();
partial void OnAcceptanceChanging(string value); partial void OnAcceptanceChanging(string value);
partial void OnAcceptanceChanged(); partial void OnAcceptanceChanged();
partial void OnStatusChanging(int value);
partial void OnStatusChanged();
partial void OnCreatedTimeChanging(System.Nullable<System.DateTime> value); partial void OnCreatedTimeChanging(System.Nullable<System.DateTime> value);
partial void OnCreatedTimeChanged(); partial void OnCreatedTimeChanged();
partial void OnStatusChanging(int value);
partial void OnStatusChanged();
partial void OnReportNoChanging(string value);
partial void OnReportNoChanged();
#endregion #endregion
public PMI_DelegationDetails() public PMI_DelegationDetails()
@ -21606,7 +21610,27 @@ namespace Model
} }
} }
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Status", DbType="Int NOT NULL")] [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreatedTime", DbType="DateTime")]
public System.Nullable<System.DateTime> CreatedTime
{
get
{
return this._CreatedTime;
}
set
{
if ((this._CreatedTime != value))
{
this.OnCreatedTimeChanging(value);
this.SendPropertyChanging();
this._CreatedTime = value;
this.SendPropertyChanged("CreatedTime");
this.OnCreatedTimeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="status", Storage="_Status", DbType="Int NOT NULL")]
public int Status public int Status
{ {
get get
@ -21626,22 +21650,22 @@ namespace Model
} }
} }
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreatedTime", DbType="DateTime")] [global::System.Data.Linq.Mapping.ColumnAttribute(Name="reportNo", Storage="_ReportNo", DbType="NVarChar(50)")]
public System.Nullable<System.DateTime> CreatedTime public string ReportNo
{ {
get get
{ {
return this._CreatedTime; return this._ReportNo;
} }
set set
{ {
if ((this._CreatedTime != value)) if ((this._ReportNo != value))
{ {
this.OnCreatedTimeChanging(value); this.OnReportNoChanging(value);
this.SendPropertyChanging(); this.SendPropertyChanging();
this._CreatedTime = value; this._ReportNo = value;
this.SendPropertyChanged("CreatedTime"); this.SendPropertyChanged("ReportNo");
this.OnCreatedTimeChanged(); this.OnReportNoChanged();
} }
} }
} }
@ -37266,6 +37290,8 @@ namespace Model
private string _ProjectId; private string _ProjectId;
private System.Nullable<bool> _IsPMI;
private string _PipelineCode; private string _PipelineCode;
private string _PipelineId; private string _PipelineId;
@ -37396,6 +37422,22 @@ namespace Model
} }
} }
[global::System.Data.Linq.Mapping.ColumnAttribute(Name="isPMI", Storage="_IsPMI", DbType="Bit")]
public System.Nullable<bool> IsPMI
{
get
{
return this._IsPMI;
}
set
{
if ((this._IsPMI != value))
{
this._IsPMI = value;
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipelineCode", DbType="NVarChar(100)")] [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PipelineCode", DbType="NVarChar(100)")]
public string PipelineCode public string PipelineCode
{ {
@ -39404,8 +39446,6 @@ namespace Model
private string _PipingClassCode; private string _PipingClassCode;
private string _PIPClassCode;
private string _WeldingDate; private string _WeldingDate;
private System.Nullable<bool> _IsCancel; private System.Nullable<bool> _IsCancel;
@ -40514,22 +40554,6 @@ 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="_WeldingDate", DbType="VarChar(100)")] [global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WeldingDate", DbType="VarChar(100)")]
public string WeldingDate public string WeldingDate
{ {