1
This commit is contained in:
@@ -203,6 +203,9 @@ namespace Model
|
||||
partial void InsertBase_Project(Base_Project instance);
|
||||
partial void UpdateBase_Project(Base_Project instance);
|
||||
partial void DeleteBase_Project(Base_Project instance);
|
||||
partial void InsertBase_ProjectHighlightsSiteType(Base_ProjectHighlightsSiteType instance);
|
||||
partial void UpdateBase_ProjectHighlightsSiteType(Base_ProjectHighlightsSiteType instance);
|
||||
partial void DeleteBase_ProjectHighlightsSiteType(Base_ProjectHighlightsSiteType instance);
|
||||
partial void InsertBase_ProjectSate(Base_ProjectSate instance);
|
||||
partial void UpdateBase_ProjectSate(Base_ProjectSate instance);
|
||||
partial void DeleteBase_ProjectSate(Base_ProjectSate instance);
|
||||
@@ -443,6 +446,9 @@ namespace Model
|
||||
partial void InsertCostGoods_ExpenseDetail(CostGoods_ExpenseDetail instance);
|
||||
partial void UpdateCostGoods_ExpenseDetail(CostGoods_ExpenseDetail instance);
|
||||
partial void DeleteCostGoods_ExpenseDetail(CostGoods_ExpenseDetail instance);
|
||||
partial void InsertCQMS_ProjectHighlightsSitePic(CQMS_ProjectHighlightsSitePic instance);
|
||||
partial void UpdateCQMS_ProjectHighlightsSitePic(CQMS_ProjectHighlightsSitePic instance);
|
||||
partial void DeleteCQMS_ProjectHighlightsSitePic(CQMS_ProjectHighlightsSitePic instance);
|
||||
partial void InsertCQMSData_CQMS(CQMSData_CQMS instance);
|
||||
partial void UpdateCQMSData_CQMS(CQMSData_CQMS instance);
|
||||
partial void DeleteCQMSData_CQMS(CQMSData_CQMS instance);
|
||||
@@ -2391,6 +2397,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Base_ProjectHighlightsSiteType> Base_ProjectHighlightsSiteType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<Base_ProjectHighlightsSiteType>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<Base_ProjectSate> Base_ProjectSate
|
||||
{
|
||||
get
|
||||
@@ -3031,6 +3045,14 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<CQMS_ProjectHighlightsSitePic> CQMS_ProjectHighlightsSitePic
|
||||
{
|
||||
get
|
||||
{
|
||||
return this.GetTable<CQMS_ProjectHighlightsSitePic>();
|
||||
}
|
||||
}
|
||||
|
||||
public System.Data.Linq.Table<CQMSData_CQMS> CQMSData_CQMS
|
||||
{
|
||||
get
|
||||
@@ -30506,6 +30528,236 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Base_ProjectHighlightsSiteType")]
|
||||
public partial class Base_ProjectHighlightsSiteType : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _Id;
|
||||
|
||||
private int _MainType;
|
||||
|
||||
private string _MainTypeName;
|
||||
|
||||
private string _SubType;
|
||||
|
||||
private string _Remark;
|
||||
|
||||
private string _CompileMan;
|
||||
|
||||
private string _CompileManName;
|
||||
|
||||
private System.Nullable<System.DateTime> _CompileDate;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
partial void OnCreated();
|
||||
partial void OnIdChanging(string value);
|
||||
partial void OnIdChanged();
|
||||
partial void OnMainTypeChanging(int value);
|
||||
partial void OnMainTypeChanged();
|
||||
partial void OnMainTypeNameChanging(string value);
|
||||
partial void OnMainTypeNameChanged();
|
||||
partial void OnSubTypeChanging(string value);
|
||||
partial void OnSubTypeChanged();
|
||||
partial void OnRemarkChanging(string value);
|
||||
partial void OnRemarkChanged();
|
||||
partial void OnCompileManChanging(string value);
|
||||
partial void OnCompileManChanged();
|
||||
partial void OnCompileManNameChanging(string value);
|
||||
partial void OnCompileManNameChanged();
|
||||
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompileDateChanged();
|
||||
#endregion
|
||||
|
||||
public Base_ProjectHighlightsSiteType()
|
||||
{
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string Id
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Id;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Id != value))
|
||||
{
|
||||
this.OnIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Id = value;
|
||||
this.SendPropertyChanged("Id");
|
||||
this.OnIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainType", DbType="Int NOT NULL")]
|
||||
public int MainType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MainType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MainType != value))
|
||||
{
|
||||
this.OnMainTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MainType = value;
|
||||
this.SendPropertyChanged("MainType");
|
||||
this.OnMainTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainTypeName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string MainTypeName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MainTypeName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MainTypeName != value))
|
||||
{
|
||||
this.OnMainTypeNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MainTypeName = value;
|
||||
this.SendPropertyChanged("MainTypeName");
|
||||
this.OnMainTypeNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubType", DbType="NVarChar(200) NOT NULL", CanBeNull=false)]
|
||||
public string SubType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SubType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SubType != value))
|
||||
{
|
||||
this.OnSubTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._SubType = value;
|
||||
this.SendPropertyChanged("SubType");
|
||||
this.OnSubTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(50)")]
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_CompileMan", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
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="_CompileManName", DbType="NVarChar(50)")]
|
||||
public string CompileManName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompileManName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompileManName != value))
|
||||
{
|
||||
this.OnCompileManNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompileManName = value;
|
||||
this.SendPropertyChanged("CompileManName");
|
||||
this.OnCompileManNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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.Base_ProjectSate")]
|
||||
public partial class Base_ProjectSate : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
@@ -65874,6 +66126,428 @@ namespace Model
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.CQMS_ProjectHighlightsSitePic")]
|
||||
public partial class CQMS_ProjectHighlightsSitePic : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
|
||||
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
|
||||
|
||||
private string _Id;
|
||||
|
||||
private string _ProjectId;
|
||||
|
||||
private string _TypeId;
|
||||
|
||||
private int _MainType;
|
||||
|
||||
private string _MainTypeName;
|
||||
|
||||
private string _SubType;
|
||||
|
||||
private string _Remark;
|
||||
|
||||
private string _Resume;
|
||||
|
||||
private string _PicUrl;
|
||||
|
||||
private string _CompileMan;
|
||||
|
||||
private string _CompileManName;
|
||||
|
||||
private System.Nullable<System.DateTime> _CompileDate;
|
||||
|
||||
private bool _IsReport;
|
||||
|
||||
private System.Nullable<System.DateTime> _ReportDate;
|
||||
|
||||
private string _ReportMan;
|
||||
|
||||
private string _ReportManName;
|
||||
|
||||
#region 可扩展性方法定义
|
||||
partial void OnLoaded();
|
||||
partial void OnValidate(System.Data.Linq.ChangeAction action);
|
||||
partial void OnCreated();
|
||||
partial void OnIdChanging(string value);
|
||||
partial void OnIdChanged();
|
||||
partial void OnProjectIdChanging(string value);
|
||||
partial void OnProjectIdChanged();
|
||||
partial void OnTypeIdChanging(string value);
|
||||
partial void OnTypeIdChanged();
|
||||
partial void OnMainTypeChanging(int value);
|
||||
partial void OnMainTypeChanged();
|
||||
partial void OnMainTypeNameChanging(string value);
|
||||
partial void OnMainTypeNameChanged();
|
||||
partial void OnSubTypeChanging(string value);
|
||||
partial void OnSubTypeChanged();
|
||||
partial void OnRemarkChanging(string value);
|
||||
partial void OnRemarkChanged();
|
||||
partial void OnResumeChanging(string value);
|
||||
partial void OnResumeChanged();
|
||||
partial void OnPicUrlChanging(string value);
|
||||
partial void OnPicUrlChanged();
|
||||
partial void OnCompileManChanging(string value);
|
||||
partial void OnCompileManChanged();
|
||||
partial void OnCompileManNameChanging(string value);
|
||||
partial void OnCompileManNameChanged();
|
||||
partial void OnCompileDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnCompileDateChanged();
|
||||
partial void OnIsReportChanging(bool value);
|
||||
partial void OnIsReportChanged();
|
||||
partial void OnReportDateChanging(System.Nullable<System.DateTime> value);
|
||||
partial void OnReportDateChanged();
|
||||
partial void OnReportManChanging(string value);
|
||||
partial void OnReportManChanged();
|
||||
partial void OnReportManNameChanging(string value);
|
||||
partial void OnReportManNameChanged();
|
||||
#endregion
|
||||
|
||||
public CQMS_ProjectHighlightsSitePic()
|
||||
{
|
||||
OnCreated();
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
|
||||
public string Id
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Id;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Id != value))
|
||||
{
|
||||
this.OnIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Id = value;
|
||||
this.SendPropertyChanged("Id");
|
||||
this.OnIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ProjectId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string ProjectId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ProjectId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ProjectId != value))
|
||||
{
|
||||
this.OnProjectIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ProjectId = value;
|
||||
this.SendPropertyChanged("ProjectId");
|
||||
this.OnProjectIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TypeId", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string TypeId
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._TypeId;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._TypeId != value))
|
||||
{
|
||||
this.OnTypeIdChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._TypeId = value;
|
||||
this.SendPropertyChanged("TypeId");
|
||||
this.OnTypeIdChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainType", DbType="Int NOT NULL")]
|
||||
public int MainType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MainType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MainType != value))
|
||||
{
|
||||
this.OnMainTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MainType = value;
|
||||
this.SendPropertyChanged("MainType");
|
||||
this.OnMainTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_MainTypeName", DbType="NVarChar(50) NOT NULL", CanBeNull=false)]
|
||||
public string MainTypeName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._MainTypeName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._MainTypeName != value))
|
||||
{
|
||||
this.OnMainTypeNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._MainTypeName = value;
|
||||
this.SendPropertyChanged("MainTypeName");
|
||||
this.OnMainTypeNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SubType", DbType="NVarChar(200) NOT NULL", CanBeNull=false)]
|
||||
public string SubType
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._SubType;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._SubType != value))
|
||||
{
|
||||
this.OnSubTypeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._SubType = value;
|
||||
this.SendPropertyChanged("SubType");
|
||||
this.OnSubTypeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Remark", DbType="NVarChar(50)")]
|
||||
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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Resume", DbType="NVarChar(500)")]
|
||||
public string Resume
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._Resume;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._Resume != value))
|
||||
{
|
||||
this.OnResumeChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._Resume = value;
|
||||
this.SendPropertyChanged("Resume");
|
||||
this.OnResumeChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PicUrl", DbType="NVarChar(500)")]
|
||||
public string PicUrl
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._PicUrl;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._PicUrl != value))
|
||||
{
|
||||
this.OnPicUrlChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._PicUrl = value;
|
||||
this.SendPropertyChanged("PicUrl");
|
||||
this.OnPicUrlChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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="_CompileManName", DbType="NVarChar(50)")]
|
||||
public string CompileManName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._CompileManName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._CompileManName != value))
|
||||
{
|
||||
this.OnCompileManNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._CompileManName = value;
|
||||
this.SendPropertyChanged("CompileManName");
|
||||
this.OnCompileManNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[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="_IsReport", DbType="Bit NOT NULL")]
|
||||
public bool IsReport
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._IsReport;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._IsReport != value))
|
||||
{
|
||||
this.OnIsReportChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._IsReport = value;
|
||||
this.SendPropertyChanged("IsReport");
|
||||
this.OnIsReportChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReportDate", DbType="DateTime")]
|
||||
public System.Nullable<System.DateTime> ReportDate
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ReportDate;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ReportDate != value))
|
||||
{
|
||||
this.OnReportDateChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ReportDate = value;
|
||||
this.SendPropertyChanged("ReportDate");
|
||||
this.OnReportDateChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReportMan", DbType="NVarChar(50)")]
|
||||
public string ReportMan
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ReportMan;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ReportMan != value))
|
||||
{
|
||||
this.OnReportManChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ReportMan = value;
|
||||
this.SendPropertyChanged("ReportMan");
|
||||
this.OnReportManChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_ReportManName", DbType="NVarChar(50)")]
|
||||
public string ReportManName
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._ReportManName;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._ReportManName != value))
|
||||
{
|
||||
this.OnReportManNameChanging(value);
|
||||
this.SendPropertyChanging();
|
||||
this._ReportManName = value;
|
||||
this.SendPropertyChanged("ReportManName");
|
||||
this.OnReportManNameChanged();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
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.CQMSData_CQMS")]
|
||||
public partial class CQMSData_CQMS : INotifyPropertyChanging, INotifyPropertyChanged
|
||||
{
|
||||
@@ -313158,6 +313832,8 @@ namespace Model
|
||||
|
||||
private string _States;
|
||||
|
||||
private string _YunMouState;
|
||||
|
||||
public View_SitePerson_Person()
|
||||
{
|
||||
}
|
||||
@@ -314249,6 +314925,22 @@ namespace Model
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_YunMouState", DbType="NVarChar(50)")]
|
||||
public string YunMouState
|
||||
{
|
||||
get
|
||||
{
|
||||
return this._YunMouState;
|
||||
}
|
||||
set
|
||||
{
|
||||
if ((this._YunMouState != value))
|
||||
{
|
||||
this._YunMouState = value;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.View_Solution_LargerHazardListItem")]
|
||||
|
||||
Reference in New Issue
Block a user