fix
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
package TestingSystem.Common.TestingPackageToKill;
|
||||
import Common.Constants;
|
||||
import Common.Database.iDBObject;
|
||||
import TestingSystem.DVM.DVMPackage.DVMPackage;
|
||||
public class TestingPackageToKill extends iDBObject {
|
||||
public int packageId = Constants.Nan;
|
||||
public int type = 0; // 0 - dvm /1 - sapfor
|
||||
public TestingPackageToKill() {
|
||||
}
|
||||
public TestingPackageToKill(DVMPackage dvmPackage) {
|
||||
packageId = dvmPackage.id;
|
||||
type = 0;
|
||||
}
|
||||
/*
|
||||
public TestingPackagetoKill(SAPFORPackage sapforPackage){
|
||||
packageId = sapforPackage.id;
|
||||
type = 1;
|
||||
}
|
||||
*/
|
||||
}
|
||||
@@ -0,0 +1,7 @@
|
||||
package TestingSystem.Common.TestingPackageToKill;
|
||||
import Common.Database.iDBTable;
|
||||
public class TestingPackagesToKillDBTable extends iDBTable<TestingPackageToKill> {
|
||||
public TestingPackagesToKillDBTable() {
|
||||
super(TestingPackageToKill.class);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user