试压包增加打印分类打印

This commit is contained in:
2025-09-01 10:11:37 +08:00
parent 87bbd83e25
commit d9740180f2
13 changed files with 1776 additions and 30 deletions
+145
View File
@@ -1355,6 +1355,9 @@ namespace Model
partial void InsertPTP_TestPackageApprove(PTP_TestPackageApprove instance);
partial void UpdatePTP_TestPackageApprove(PTP_TestPackageApprove instance);
partial void DeletePTP_TestPackageApprove(PTP_TestPackageApprove instance);
partial void InsertPTP_TestPackagePrint(PTP_TestPackagePrint instance);
partial void UpdatePTP_TestPackagePrint(PTP_TestPackagePrint instance);
partial void DeletePTP_TestPackagePrint(PTP_TestPackagePrint instance);
partial void InsertQCManage_QCGroupRegistration(QCManage_QCGroupRegistration instance);
partial void UpdateQCManage_QCGroupRegistration(QCManage_QCGroupRegistration instance);
partial void DeleteQCManage_QCGroupRegistration(QCManage_QCGroupRegistration instance);
@@ -5467,6 +5470,14 @@ namespace Model
}
}
public System.Data.Linq.Table<PTP_TestPackagePrint> PTP_TestPackagePrint
{
get
{
return this.GetTable<PTP_TestPackagePrint>();
}
}
public System.Data.Linq.Table<QCManage_QCGroupRegistration> QCManage_QCGroupRegistration
{
get
@@ -219561,6 +219572,140 @@ namespace Model
}
}
[global::System.Data.Linq.Mapping.TableAttribute(Name="dbo.PTP_TestPackagePrint")]
public partial class PTP_TestPackagePrint : INotifyPropertyChanging, INotifyPropertyChanged
{
private static PropertyChangingEventArgs emptyChangingEventArgs = new PropertyChangingEventArgs(String.Empty);
private string _Id;
private string _PTP_ID;
private System.Nullable<int> _TypeInt;
private System.Nullable<int> _PrintCount;
#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 OnPTP_IDChanging(string value);
partial void OnPTP_IDChanged();
partial void OnTypeIntChanging(System.Nullable<int> value);
partial void OnTypeIntChanged();
partial void OnPrintCountChanging(System.Nullable<int> value);
partial void OnPrintCountChanged();
#endregion
public PTP_TestPackagePrint()
{
OnCreated();
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_Id", DbType="VarChar(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="_PTP_ID", DbType="VarChar(50)")]
public string PTP_ID
{
get
{
return this._PTP_ID;
}
set
{
if ((this._PTP_ID != value))
{
this.OnPTP_IDChanging(value);
this.SendPropertyChanging();
this._PTP_ID = value;
this.SendPropertyChanged("PTP_ID");
this.OnPTP_IDChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_TypeInt", DbType="Int")]
public System.Nullable<int> TypeInt
{
get
{
return this._TypeInt;
}
set
{
if ((this._TypeInt != value))
{
this.OnTypeIntChanging(value);
this.SendPropertyChanging();
this._TypeInt = value;
this.SendPropertyChanged("TypeInt");
this.OnTypeIntChanged();
}
}
}
[global::System.Data.Linq.Mapping.ColumnAttribute(Storage="_PrintCount", DbType="Int")]
public System.Nullable<int> PrintCount
{
get
{
return this._PrintCount;
}
set
{
if ((this._PrintCount != value))
{
this.OnPrintCountChanging(value);
this.SendPropertyChanging();
this._PrintCount = value;
this.SendPropertyChanged("PrintCount");
this.OnPrintCountChanged();
}
}
}
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.QCManage_QCGroupRegistration")]
public partial class QCManage_QCGroupRegistration : INotifyPropertyChanging, INotifyPropertyChanged
{