提交代码
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user