- เพิ่ม interface prjmst

- เพิ่ม interface trnmst
This commit is contained in:
2025-11-17 18:34:30 +07:00
parent 5d3f409a68
commit 77c7d0574b
3 changed files with 172 additions and 0 deletions

View File

@@ -1,5 +1,7 @@
import jwt from 'jsonwebtoken'
import { BdgmstInterface } from './table/bdgmstInterface.js'
import { PrjmstInterface } from './table/prjmstInterface.js'
import { TrnmstInterface } from './table/trnmstInterface.js'
import { sendError } from '../utils/response.js'
// import { ActmstInterface } from './actmstInterface.js'
@@ -13,6 +15,8 @@ export class Interface {
constructor() {
this.map = {
bdgmst: new BdgmstInterface(),
prjmst: new PrjmstInterface(),
trnmst: new TrnmstInterface(),
// actmst: new ActmstInterface(),
}
}