修改质量会议及培训

This commit is contained in:
2022-09-12 14:58:35 +08:00
parent a2fd7be5ef
commit 6908efcf2c
25 changed files with 1028 additions and 103 deletions
+145
View File
@@ -86,6 +86,9 @@ namespace Model
partial void InsertBase_CostType(Base_CostType instance);
partial void UpdateBase_CostType(Base_CostType instance);
partial void DeleteBase_CostType(Base_CostType instance);
partial void InsertBase_CQMSTrainObject(Base_CQMSTrainObject instance);
partial void UpdateBase_CQMSTrainObject(Base_CQMSTrainObject instance);
partial void DeleteBase_CQMSTrainObject(Base_CQMSTrainObject instance);
partial void InsertBase_CQMSTrainType(Base_CQMSTrainType instance);
partial void UpdateBase_CQMSTrainType(Base_CQMSTrainType instance);
partial void DeleteBase_CQMSTrainType(Base_CQMSTrainType instance);
@@ -1587,6 +1590,14 @@ namespace Model
}
}
public System.Data.Linq.Table<Base_CQMSTrainObject> Base_CQMSTrainObject
{
get
{
return this.GetTable<Base_CQMSTrainObject>();
}
}
public System.Data.Linq.Table<Base_CQMSTrainType> Base_CQMSTrainType
{
get
@@ -12980,6 +12991,140 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Base_CQMSTrainObject")]
public partial class Base_CQMSTrainObject : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _TrainObjectId;
private string _TrainObjectCode;
private string _TrainObjectName;
private string _Remark;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnTrainObjectIdChanging(string value);
partial void OnTrainObjectIdChanged();
partial void OnTrainObjectCodeChanging(string value);
partial void OnTrainObjectCodeChanged();
partial void OnTrainObjectNameChanging(string value);
partial void OnTrainObjectNameChanged();
partial void OnRemarkChanging(string value);
partial void OnRemarkChanged();
#endregion
public Base_CQMSTrainObject()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TrainObjectId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
public string TrainObjectId
{
get
{
return this._TrainObjectId;
}
set
{
if ((this._TrainObjectId != value))
{
this.OnTrainObjectIdChanging(value);
this.SendPropertyChanging();
this._TrainObjectId = value;
this.SendPropertyChanged("TrainObjectId");
this.OnTrainObjectIdChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TrainObjectCode", DbType="NVarChar(50)")]
public string TrainObjectCode
{
get
{
return this._TrainObjectCode;
}
set
{
if ((this._TrainObjectCode != value))
{
this.OnTrainObjectCodeChanging(value);
this.SendPropertyChanging();
this._TrainObjectCode = value;
this.SendPropertyChanged("TrainObjectCode");
this.OnTrainObjectCodeChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TrainObjectName", DbType="NVarChar(50)")]
public string TrainObjectName
{
get
{
return this._TrainObjectName;
}
set
{
if ((this._TrainObjectName != value))
{
this.OnTrainObjectNameChanging(value);
this.SendPropertyChanging();
this._TrainObjectName = value;
this.SendPropertyChanged("TrainObjectName");
this.OnTrainObjectNameChanged();
}
}
}
[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.Base_CQMSTrainType")]
public partial class Base_CQMSTrainType : INotifyPropertyChanging, INotifyPropertyChanged
{