This commit is contained in:
2025-09-29 19:01:14 +08:00
parent 0fc845ad50
commit 4c239d99c8
5 changed files with 53 additions and 13 deletions
+24
View File
@@ -188814,6 +188814,8 @@ namespace Model
private System.Nullable<bool> _IsIssue;
private System.Nullable<System.DateTime> _CreateTime;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
@@ -188886,6 +188888,8 @@ namespace Model
partial void OnIfmailChanged();
partial void OnIsIssueChanging(System.Nullable<bool> value);
partial void OnIsIssueChanged();
partial void OnCreateTimeChanging(System.Nullable<System.DateTime> value);
partial void OnCreateTimeChanged();
#endregion
public IDP_DesignDrawing()
@@ -189573,6 +189577,26 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CreateTime", DbType="DateTime")]
public System.Nullable<System.DateTime> CreateTime
{
get
{
return this._CreateTime;
}
set
{
if ((this._CreateTime != value))
{
this.OnCreateTimeChanging(value);
this.SendPropertyChanging();
this._CreateTime = value;
this.SendPropertyChanged("CreateTime");
this.OnCreateTimeChanged();
}
}
}
public event PropertyChangingEventHandler PropertyChanging;
public event PropertyChangedEventHandler PropertyChanged;