expressSandbox/routes/Codes/service/index.js

12 lines
238 B
JavaScript
Raw Normal View History

2024-12-09 10:00:39 +00:00
const Codes = require('../../../PG/model/codes')
async function getCodeListByTypeId(type_id) {
return type_id
? await Codes.query().where('type_id', type_id)
: await Codes.query()
}
module.exports = {
getCodeListByTypeId,
}