提交试车代码

This commit is contained in:
2023-10-30 08:26:04 +08:00
parent 11e609340b
commit 31cf6d6508
25 changed files with 3038 additions and 26 deletions
+312
View File
@@ -263917,6 +263917,32 @@ namespace Model
private System.Nullable<int> _OwnerIsAllPass;
private System.Nullable<System.DateTime> _SubcontractorAllPassData;
private System.Nullable<System.DateTime> _ContractorAllPassData;
private System.Nullable<System.DateTime> _SupervisionAllPassData;
private System.Nullable<System.DateTime> _OwnerAllPassData;
private System.Nullable<int> _WanderIsComplete;
private System.Nullable<System.DateTime> _WanderCompleteData;
private System.Nullable<int> _IsSiteImplement;
private string _SiteImplementUser;
private System.Nullable<System.DateTime> _SiteImplementConfirmData;
private System.Nullable<System.DateTime> _RecordUploadData;
private System.Nullable<int> _InspectIsClose;
private string _InspectIsCloseUser;
private System.Nullable<System.DateTime> _InspectCloseData;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -263965,6 +263991,32 @@ namespace Model
partial void OnSupervisionIsAllPassChanged();
partial void OnOwnerIsAllPassChanging(System.Nullable<int> value);
partial void OnOwnerIsAllPassChanged();
partial void OnSubcontractorAllPassDataChanging(System.Nullable<System.DateTime> value);
partial void OnSubcontractorAllPassDataChanged();
partial void OnContractorAllPassDataChanging(System.Nullable<System.DateTime> value);
partial void OnContractorAllPassDataChanged();
partial void OnSupervisionAllPassDataChanging(System.Nullable<System.DateTime> value);
partial void OnSupervisionAllPassDataChanged();
partial void OnOwnerAllPassDataChanging(System.Nullable<System.DateTime> value);
partial void OnOwnerAllPassDataChanged();
partial void OnWanderIsCompleteChanging(System.Nullable<int> value);
partial void OnWanderIsCompleteChanged();
partial void OnWanderCompleteDataChanging(System.Nullable<System.DateTime> value);
partial void OnWanderCompleteDataChanged();
partial void OnIsSiteImplementChanging(System.Nullable<int> value);
partial void OnIsSiteImplementChanged();
partial void OnSiteImplementUserChanging(string value);
partial void OnSiteImplementUserChanged();
partial void OnSiteImplementConfirmDataChanging(System.Nullable<System.DateTime> value);
partial void OnSiteImplementConfirmDataChanged();
partial void OnRecordUploadDataChanging(System.Nullable<System.DateTime> value);
partial void OnRecordUploadDataChanged();
partial void OnInspectIsCloseChanging(System.Nullable<int> value);
partial void OnInspectIsCloseChanged();
partial void OnInspectIsCloseUserChanging(string value);
partial void OnInspectIsCloseUserChanged();
partial void OnInspectCloseDataChanging(System.Nullable<System.DateTime> value);
partial void OnInspectCloseDataChanged();
#endregion
public PreRun_SubInspectTerm()
@@ -264412,6 +264464,266 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubcontractorAllPassData", DbType="DateTime")]
public System.Nullable<System.DateTime> SubcontractorAllPassData
{
get
{
return this._SubcontractorAllPassData;
}
set
{
if ((this._SubcontractorAllPassData != value))
{
this.OnSubcontractorAllPassDataChanging(value);
this.SendPropertyChanging();
this._SubcontractorAllPassData = value;
this.SendPropertyChanged("SubcontractorAllPassData");
this.OnSubcontractorAllPassDataChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ContractorAllPassData", DbType="DateTime")]
public System.Nullable<System.DateTime> ContractorAllPassData
{
get
{
return this._ContractorAllPassData;
}
set
{
if ((this._ContractorAllPassData != value))
{
this.OnContractorAllPassDataChanging(value);
this.SendPropertyChanging();
this._ContractorAllPassData = value;
this.SendPropertyChanged("ContractorAllPassData");
this.OnContractorAllPassDataChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SupervisionAllPassData", DbType="DateTime")]
public System.Nullable<System.DateTime> SupervisionAllPassData
{
get
{
return this._SupervisionAllPassData;
}
set
{
if ((this._SupervisionAllPassData != value))
{
this.OnSupervisionAllPassDataChanging(value);
this.SendPropertyChanging();
this._SupervisionAllPassData = value;
this.SendPropertyChanged("SupervisionAllPassData");
this.OnSupervisionAllPassDataChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_OwnerAllPassData", DbType="DateTime")]
public System.Nullable<System.DateTime> OwnerAllPassData
{
get
{
return this._OwnerAllPassData;
}
set
{
if ((this._OwnerAllPassData != value))
{
this.OnOwnerAllPassDataChanging(value);
this.SendPropertyChanging();
this._OwnerAllPassData = value;
this.SendPropertyChanged("OwnerAllPassData");
this.OnOwnerAllPassDataChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderIsComplete", DbType="Int")]
public System.Nullable<int> WanderIsComplete
{
get
{
return this._WanderIsComplete;
}
set
{
if ((this._WanderIsComplete != value))
{
this.OnWanderIsCompleteChanging(value);
this.SendPropertyChanging();
this._WanderIsComplete = value;
this.SendPropertyChanged("WanderIsComplete");
this.OnWanderIsCompleteChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_WanderCompleteData", DbType="DateTime")]
public System.Nullable<System.DateTime> WanderCompleteData
{
get
{
return this._WanderCompleteData;
}
set
{
if ((this._WanderCompleteData != value))
{
this.OnWanderCompleteDataChanging(value);
this.SendPropertyChanging();
this._WanderCompleteData = value;
this.SendPropertyChanged("WanderCompleteData");
this.OnWanderCompleteDataChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsSiteImplement", DbType="Int")]
public System.Nullable<int> IsSiteImplement
{
get
{
return this._IsSiteImplement;
}
set
{
if ((this._IsSiteImplement != value))
{
this.OnIsSiteImplementChanging(value);
this.SendPropertyChanging();
this._IsSiteImplement = value;
this.SendPropertyChanged("IsSiteImplement");
this.OnIsSiteImplementChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteImplementUser", DbType="VarChar(50)")]
public string SiteImplementUser
{
get
{
return this._SiteImplementUser;
}
set
{
if ((this._SiteImplementUser != value))
{
this.OnSiteImplementUserChanging(value);
this.SendPropertyChanging();
this._SiteImplementUser = value;
this.SendPropertyChanged("SiteImplementUser");
this.OnSiteImplementUserChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SiteImplementConfirmData", DbType="DateTime")]
public System.Nullable<System.DateTime> SiteImplementConfirmData
{
get
{
return this._SiteImplementConfirmData;
}
set
{
if ((this._SiteImplementConfirmData != value))
{
this.OnSiteImplementConfirmDataChanging(value);
this.SendPropertyChanging();
this._SiteImplementConfirmData = value;
this.SendPropertyChanged("SiteImplementConfirmData");
this.OnSiteImplementConfirmDataChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_RecordUploadData", DbType="DateTime")]
public System.Nullable<System.DateTime> RecordUploadData
{
get
{
return this._RecordUploadData;
}
set
{
if ((this._RecordUploadData != value))
{
this.OnRecordUploadDataChanging(value);
this.SendPropertyChanging();
this._RecordUploadData = value;
this.SendPropertyChanged("RecordUploadData");
this.OnRecordUploadDataChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsClose", DbType="Int")]
public System.Nullable<int> InspectIsClose
{
get
{
return this._InspectIsClose;
}
set
{
if ((this._InspectIsClose != value))
{
this.OnInspectIsCloseChanging(value);
this.SendPropertyChanging();
this._InspectIsClose = value;
this.SendPropertyChanged("InspectIsClose");
this.OnInspectIsCloseChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectIsCloseUser", DbType="VarChar(50)")]
public string InspectIsCloseUser
{
get
{
return this._InspectIsCloseUser;
}
set
{
if ((this._InspectIsCloseUser != value))
{
this.OnInspectIsCloseUserChanging(value);
this.SendPropertyChanging();
this._InspectIsCloseUser = value;
this.SendPropertyChanged("InspectIsCloseUser");
this.OnInspectIsCloseUserChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_InspectCloseData", DbType="DateTime")]
public System.Nullable<System.DateTime> InspectCloseData
{
get
{
return this._InspectCloseData;
}
set
{
if ((this._InspectCloseData != value))
{
this.OnInspectCloseDataChanging(value);
this.SendPropertyChanging();
this._InspectCloseData = value;
this.SendPropertyChanged("InspectCloseData");
this.OnInspectCloseDataChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;