提交试车代码

This commit is contained in:
2023-11-06 11:16:46 +08:00
parent 5a130a619b
commit 0b84177640
30 changed files with 2021 additions and 146 deletions
+72
View File
@@ -264039,6 +264039,12 @@ namespace Model
private System.Nullable<System.DateTime> _InspectCloseData;
private System.Nullable<int> _IsUnifyWanderAbout;
private System.Nullable<System.DateTime> _UnifyWanderAboutData;
private string _UnifyWanderAboutOpinion;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -264113,6 +264119,12 @@ namespace Model
partial void OnInspectIsCloseUserChanged();
partial void OnInspectCloseDataChanging(System.Nullable<System.DateTime> value);
partial void OnInspectCloseDataChanged();
partial void OnIsUnifyWanderAboutChanging(System.Nullable<int> value);
partial void OnIsUnifyWanderAboutChanged();
partial void OnUnifyWanderAboutDataChanging(System.Nullable<System.DateTime> value);
partial void OnUnifyWanderAboutDataChanged();
partial void OnUnifyWanderAboutOpinionChanging(string value);
partial void OnUnifyWanderAboutOpinionChanged();
#endregion
public PreRun_SubInspectTerm()
@@ -264820,6 +264832,66 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_IsUnifyWanderAbout", DbType="Int")]
public System.Nullable<int> IsUnifyWanderAbout
{
get
{
return this._IsUnifyWanderAbout;
}
set
{
if ((this._IsUnifyWanderAbout != value))
{
this.OnIsUnifyWanderAboutChanging(value);
this.SendPropertyChanging();
this._IsUnifyWanderAbout = value;
this.SendPropertyChanged("IsUnifyWanderAbout");
this.OnIsUnifyWanderAboutChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnifyWanderAboutData", DbType="DateTime")]
public System.Nullable<System.DateTime> UnifyWanderAboutData
{
get
{
return this._UnifyWanderAboutData;
}
set
{
if ((this._UnifyWanderAboutData != value))
{
this.OnUnifyWanderAboutDataChanging(value);
this.SendPropertyChanging();
this._UnifyWanderAboutData = value;
this.SendPropertyChanged("UnifyWanderAboutData");
this.OnUnifyWanderAboutDataChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_UnifyWanderAboutOpinion", DbType="VarChar(MAX)", UpdateCheck=UpdateCheck.Never)]
public string UnifyWanderAboutOpinion
{
get
{
return this._UnifyWanderAboutOpinion;
}
set
{
if ((this._UnifyWanderAboutOpinion != value))
{
this.OnUnifyWanderAboutOpinionChanging(value);
this.SendPropertyChanging();
this._UnifyWanderAboutOpinion = value;
this.SendPropertyChanged("UnifyWanderAboutOpinion");
this.OnUnifyWanderAboutOpinionChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;