提交代码
This commit is contained in:
@@ -449,6 +449,9 @@ namespace Model
|
||||
partial void InsertDigData_HSEDataCollectSubmission(DigData_HSEDataCollectSubmission instance);
|
||||
partial void UpdateDigData_HSEDataCollectSubmission(DigData_HSEDataCollectSubmission instance);
|
||||
partial void DeleteDigData_HSEDataCollectSubmission(DigData_HSEDataCollectSubmission instance);
|
||||
partial void InsertDoc_Doc(Doc_Doc instance);
|
||||
partial void UpdateDoc_Doc(Doc_Doc instance);
|
||||
partial void DeleteDoc_Doc(Doc_Doc instance);
|
||||
partial void InsertDt_document(Dt_document instance);
|
||||
partial void UpdateDt_document(Dt_document instance);
|
||||
partial void DeleteDt_document(Dt_document instance);
|
||||
@@ -2924,6 +2927,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Doc_Doc> Doc_Doc
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<Doc_Doc>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Dt_document> Dt_document
|
||||
{
|
||||
get
|
||||
@@ -66591,6 +66602,164 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Doc_Doc")]
|
||||
public partial class Doc_Doc : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _DocId;
|
||||
|
||||
private string _DocName;
|
||||
|
||||
private string _CompileMan;
|
||||
|
||||
private System.Nullable<System.DateTime> _CompileDate;
|
||||
|
||||
private string _Remark;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
partial void OnCreated();
|
||||
partial void OnDocIdChanging(string value);
|
||||
partial void OnDocIdChanged();
|
||||
partial void OnDocNameChanging(string value);
|
||||
partial void OnDocNameChanged();
|
||||
partial void OnCompileManChanging(string value);
|
||||
partial void OnCompileManChanged();
|
||||
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompileDateChanged();
|
||||
partial void OnRemarkChanging(string value);
|
||||
partial void OnRemarkChanged();
|
||||
#endregion
|
||||
|
||||
public Doc_Doc()
|
||||
{
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DocId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string DocId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DocId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DocId != value))
|
||||
{
|
||||
this.OnDocIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DocId = value;
|
||||
this.SendPropertyChanged("DocId");
|
||||
this.OnDocIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_DocName", DbType="NVarChar(100)")]
|
||||
public string DocName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._DocName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._DocName != value))
|
||||
{
|
||||
this.OnDocNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._DocName = value;
|
||||
this.SendPropertyChanged("DocName");
|
||||
this.OnDocNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50)")]
|
||||
public string CompileMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompileMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompileMan != value))
|
||||
{
|
||||
this.OnCompileManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompileMan = value;
|
||||
this.SendPropertyChanged("CompileMan");
|
||||
this.OnCompileManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> CompileDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompileDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompileDate != value))
|
||||
{
|
||||
this.OnCompileDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompileDate = value;
|
||||
this.SendPropertyChanged("CompileDate");
|
||||
this.OnCompileDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(200)")]
|
||||
public string Remark
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Remark;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Remark != value))
|
||||
{
|
||||
this.OnRemarkChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Remark = value;
|
||||
this.SendPropertyChanged("Remark");
|
||||
this.OnRemarkChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public event PropertyChangingEventHandler PropertyChanging;
|
||||
|
||||
public event PropertyChangedEventHandler PropertyChanged;
|
||||
|
||||
protected virtual void SendPropertyChanging()
|
||||
{
|
||||
if ((this.PropertyChanging != null))
|
||||
{
|
||||
this.PropertyChanging(this, emptyChangingEventArgs);
|
||||
}
|
||||
}
|
||||
|
||||
protected virtual void SendPropertyChanged(String propertyName)
|
||||
{
|
||||
if ((this.PropertyChanged != null))
|
||||
{
|
||||
this.PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.dt_document")]
|
||||
public partial class Dt_document : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user