init web ems all

This commit is contained in:
agtuser
2024-09-27 17:13:36 +08:00
parent 81c97acbe9
commit 5cc56f8078
4263 changed files with 798779 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
function PDFPage (db_name, page_descr, tbl_cords) {
// no dot set the auto increment before put() in the database
// issue #12900
// this.pg_nr = null;
this.db_name = db_name;
this.page_descr = page_descr;
this.tbl_cords = tbl_cords;
}
function TableCoordinate (db_name, table_name, pdf_pg_nr, x, y) {
// no dot set the auto increment before put() in the database
// issue #12900
// this.id = null;
this.db_name = db_name;
this.table_name = table_name;
this.pdf_pg_nr = pdf_pg_nr;
this.x = x;
this.y = y;
}