no message

This commit is contained in:
2025-04-03 23:04:26 +03:00
parent f1a1ce0436
commit aac4221a4d
3 changed files with 39 additions and 13 deletions

View File

@@ -0,0 +1,7 @@
package _VisualDVM.TestingSystem.SAPFOR.SapforTask;
import Common.Database.Tables.DBTable;
public class SapforTasksDBTable extends DBTable<Long, SapforTask> {
public SapforTasksDBTable() {
super(Long.class, SapforTask.class);
}
}