质量资料收发文调整

This commit is contained in:
2025-12-04 15:38:55 +08:00
parent 07b7d8426a
commit 2b61bbe138
21 changed files with 1388 additions and 206 deletions
+121
View File
@@ -203,6 +203,9 @@ namespace Model
partial void InsertBase_QuestionType(Base_QuestionType instance);
partial void UpdateBase_QuestionType(Base_QuestionType instance);
partial void DeleteBase_QuestionType(Base_QuestionType instance);
partial void InsertBase_ReceivingDocType(Base_ReceivingDocType instance);
partial void UpdateBase_ReceivingDocType(Base_ReceivingDocType instance);
partial void DeleteBase_ReceivingDocType(Base_ReceivingDocType instance);
partial void InsertBase_RiskLevel(Base_RiskLevel instance);
partial void UpdateBase_RiskLevel(Base_RiskLevel instance);
partial void DeleteBase_RiskLevel(Base_RiskLevel instance);
@@ -3324,6 +3327,14 @@ namespace Model
}
}
public System.Data.Linq.Table<Base_ReceivingDocType> Base_ReceivingDocType
{
get
{
return this.GetTable<Base_ReceivingDocType>();
}
}
public System.Data.Linq.Table<Base_RiskLevel> Base_RiskLevel
{
get
@@ -37814,6 +37825,116 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.Base_ReceivingDocType")]
public partial class Base_ReceivingDocType : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _TypeId;
private string _TypeName;
private System.Nullable<int> _SortIndex;
#region
partial void OnLoaded();
partial void OnValidate(System.Data.Linq.ChangeAction action);
partial void OnCreated();
partial void OnTypeIdChanging(string value);
partial void OnTypeIdChanged();
partial void OnTypeNameChanging(string value);
partial void OnTypeNameChanged();
partial void OnSortIndexChanging(System.Nullable<int> value);
partial void OnSortIndexChanged();
#endregion
public Base_ReceivingDocType()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TypeId", DbType="NVarChar(50) NOT NULL", CanBeNull=false, IsPrimaryKey=true)]
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="_TypeName", DbType="NVarChar(50)")]
public string TypeName
{
get
{
return this._TypeName;
}
set
{
if ((this._TypeName != value))
{
this.OnTypeNameChanging(value);
this.SendPropertyChanging();
this._TypeName = value;
this.SendPropertyChanged("TypeName");
this.OnTypeNameChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_SortIndex", DbType="Int")]
public System.Nullable<int> SortIndex
{
get
{
return this._SortIndex;
}
set
{
if ((this._SortIndex != value))
{
this.OnSortIndexChanging(value);
this.SendPropertyChanging();
this._SortIndex = value;
this.SendPropertyChanged("SortIndex");
this.OnSortIndexChanged();
}
}
}
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_RiskLevel")]
public partial class Base_RiskLevel : INotifyPropertyChanging, INotifyPropertyChanged
{