提交代码

This commit is contained in:
2023-11-06 15:45:52 +08:00
parent 0b84177640
commit 47921967d7
15 changed files with 909 additions and 540 deletions
+24
View File
@@ -110974,6 +110974,8 @@ namespace Model
private string _ScorMan;
private System.Nullable<int> _SgCount;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -111008,6 +111010,8 @@ namespace Model
partial void OnWorkRangeChanged();
partial void OnScorManChanging(string value);
partial void OnScorManChanged();
partial void OnSgCountChanging(System.Nullable<int> value);
partial void OnSgCountChanged();
#endregion
public CQMS_Performance()
@@ -111315,6 +111319,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SgCount", DbType="Int")]
public System.Nullable<int> SgCount
{
get
{
return this._SgCount;
}
set
{
if ((this._SgCount != value))
{
this.OnSgCountChanging(value);
this.SendPropertyChanging();
this._SgCount = value;
this.SendPropertyChanged("SgCount");
this.OnSgCountChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;